diff --git a/terminal.d b/terminal.d index 1d5f215..b49bfb6 100644 --- a/terminal.d +++ b/terminal.d @@ -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.