mirror of https://github.com/adamdruppe/arsd.git
thing for irc
This commit is contained in:
parent
1cca75a7f1
commit
5c7cc81c84
10
terminal.d
10
terminal.d
|
@ -7468,6 +7468,16 @@ struct ScrollbackBuffer {
|
||||||
scrollbackPosition_++;
|
scrollbackPosition_++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/++
|
||||||
|
Adds a line by components without affecting scrollback.
|
||||||
|
|
||||||
|
History:
|
||||||
|
Added May 17, 2022
|
||||||
|
+/
|
||||||
|
void addLine(LineComponent[] components...) {
|
||||||
|
lines ~= Line(components.dup);
|
||||||
|
}
|
||||||
|
|
||||||
/++
|
/++
|
||||||
Scrolling controls.
|
Scrolling controls.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue