Send 0x7F instead of 0x08 for backspace

This commit is contained in:
Jeremy Soller 2023-12-21 14:24:21 -07:00
parent 43f6c4129b
commit d7798f73e6

View file

@ -315,7 +315,7 @@ where
modifiers,
}) => match key_code {
KeyCode::Backspace => {
terminal.input_scroll(b"\x08".as_slice());
terminal.input_scroll(b"\x7F".as_slice());
status = Status::Captured;
}
KeyCode::Tab => {