Added show character palette. Need to position correctly.

This commit is contained in:
Mikayla Maki 2022-08-16 23:10:05 -07:00
parent 1f82c0c8bf
commit bf7b3150e4
3 changed files with 18 additions and 2 deletions

View file

@ -53,7 +53,6 @@ pub fn to_esc_str(keystroke: &Keystroke, mode: &TermMode) -> Option<String> {
// Manual Bindings including modifiers
let manual_esc_str = match (keystroke.key.as_ref(), &modifiers) {
//Basic special keys
("space", Modifiers::None) => Some(" ".to_string()),
("tab", Modifiers::None) => Some("\x09".to_string()),
("escape", Modifiers::None) => Some("\x1b".to_string()),
("enter", Modifiers::None) => Some("\x0d".to_string()),