Merge pull request #3935 from Tyriar/3759

Remove shift+backspace -> ^H binding
This commit is contained in:
Daniel Imms
2022-07-28 07:18:30 -07:00
committed by GitHub
+1 -4
View File
@@ -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;
}