removing last println

This commit is contained in:
Yehowshua Immanuel 2024-12-27 10:19:43 -05:00
parent e4ac219bf9
commit b97f105408

View file

@ -93,7 +93,6 @@ fn make_grid_with_newlines(term: &TerminalScreen) -> String {
fn process_str(s: &str, has_ctrl: bool) -> Option<char> {
println!("process_str: {s}");
match s {
"Enter" => {return Some('\n');}
"Escape" => {return Some('\x1B');}