From 5c7cc81c84ee0c77d6c0ea40c3ab8d5fee4c8e8f Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 17 May 2022 15:46:34 -0400 Subject: [PATCH] thing for irc --- terminal.d | 10 ++++++++++ 1 file changed, 10 insertions(+) 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.