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');}