Send 0x7F instead of 0x08 for backspace
This commit is contained in:
parent
43f6c4129b
commit
d7798f73e6
1 changed files with 1 additions and 1 deletions
|
|
@ -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 => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue