thing for irc

This commit is contained in:
Adam D. Ruppe 2022-05-17 15:46:34 -04:00
parent 1cca75a7f1
commit 5c7cc81c84
1 changed files with 10 additions and 0 deletions

View File

@ -7468,6 +7468,16 @@ struct ScrollbackBuffer {
scrollbackPosition_++;
}
/++
Adds a line by components without affecting scrollback.
History:
Added May 17, 2022
+/
void addLine(LineComponent[] components...) {
lines ~= Line(components.dup);
}
/++
Scrolling controls.