mirror of
https://github.com/wavetermdev/xterm.js.git
synced 2026-08-05 13:43:48 -07:00
Remove shift+backspace -> ^H binding
This has been there since the first commit of term.js, it's not clear why it's there but Terminal.app, iTerm2 and kitty seem to just do a regular backspace Fixes #3759
This commit is contained in:
@@ -83,10 +83,7 @@ export function evaluateKeyboardEvent(
|
||||
break;
|
||||
case 8:
|
||||
// backspace
|
||||
if (ev.shiftKey) {
|
||||
result.key = C0.BS; // ^H
|
||||
break;
|
||||
} else if (ev.altKey) {
|
||||
if (ev.altKey) {
|
||||
result.key = C0.ESC + C0.DEL; // \e ^?
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user