terminal: don't export plainString, its only for testing

This commit is contained in:
Mitchell Hashimoto
2023-07-09 11:56:19 -07:00
parent a890cc3a5b
commit 791e1a84af

View File

@ -398,7 +398,7 @@ fn clearPromptForResize(self: *Terminal) void {
/// encoded as "\n". This omits any formatting such as fg/bg. /// encoded as "\n". This omits any formatting such as fg/bg.
/// ///
/// The caller must free the string. /// The caller must free the string.
pub fn plainString(self: *Terminal, alloc: Allocator) ![]const u8 { fn plainString(self: *Terminal, alloc: Allocator) ![]const u8 {
return try self.screen.testString(alloc, .viewport); return try self.screen.testString(alloc, .viewport);
} }