From b97f105408e38536f4092fcebc2ad6bd5781e74d Mon Sep 17 00:00:00 2001 From: Yehowshua Immanuel Date: Fri, 27 Dec 2024 10:19:43 -0500 Subject: [PATCH] removing last println --- frontend/src/term.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/src/term.rs b/frontend/src/term.rs index 2282e40..8b013b0 100644 --- a/frontend/src/term.rs +++ b/frontend/src/term.rs @@ -93,7 +93,6 @@ fn make_grid_with_newlines(term: &TerminalScreen) -> String { fn process_str(s: &str, has_ctrl: bool) -> Option { - println!("process_str: {s}"); match s { "Enter" => {return Some('\n');} "Escape" => {return Some('\x1B');}