terminal: don't log semantic prompt marks

pull/147/head
Mitchell Hashimoto 2023-05-27 16:55:19 -07:00
parent 020e096243
commit 56928b926a
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 1 additions and 1 deletions

View File

@ -1401,7 +1401,7 @@ pub fn setScrollingRegion(self: *Terminal, top: usize, bottom: usize) void {
/// (OSC 133) only allow setting this for wherever the current active cursor
/// is located.
pub fn markSemanticPrompt(self: *Terminal, p: SemanticPrompt) void {
log.warn("semantic_prompt: {}", .{p});
// log.warn("semantic_prompt: {}", .{p});
const row = self.screen.getRow(.{ .active = self.screen.cursor.y });
row.setSemanticPrompt(switch (p) {
.prompt => .prompt,