We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f6a64 commit ea68922Copy full SHA for ea68922
app/components/Terminal/Xterm.jsx
@@ -64,6 +64,9 @@ class Term extends Component {
64
} else if (e.keyCode === 68 && e.altKey) {
65
terminalManager.getSocket().emit('term.input', { id: terminal.id, input: '\u001bd' })
66
return false
67
+ } else if (e.keyCode === 8 && e.altKey) {
68
+ terminalManager.getSocket().emit('term.input', { id: terminal.id, input: '\x1b' + '\x7f' })
69
+ return false
70
}
71
if (e.keyCode === 8747 || e.keyCode === 402 || e.keyCode === 8706) {
72
0 commit comments