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 1d4c611 commit b8bbc9aCopy full SHA for b8bbc9a
lib/runtime/console.js
@@ -252,7 +252,7 @@ function addLinkHandler (terminal) {
252
}
253
254
function handleKeybinding (e, term, binds = whitelistedKeybindingsTerminal) {
255
- if (e.keyCode === 13 && (e.altKey || e.metaKey) && e.type === 'keydown') {
+ if (process.platform !== 'win32' && e.keyCode === 13 && (e.altKey || e.metaKey) && e.type === 'keydown') {
256
// Meta-Enter doesn't work properly with xterm.js atm, so we send the right escape sequence ourselves:
257
if (term.ty) {
258
term.ty.write('\x1b\x0d')
0 commit comments