diff --git a/client/app/scripts/vendor/term.js b/client/app/scripts/vendor/term.js index a6aba7829..ca8c47ade 100644 --- a/client/app/scripts/vendor/term.js +++ b/client/app/scripts/vendor/term.js @@ -2756,6 +2756,13 @@ Terminal.prototype.keyDown = function(ev) { case 123: key = '\x1b[24~'; break; + // Special case for US-intl '/" + case 222: + key = '\''; + if (ev.shiftKey) { + key = '"'; + } + break; default: // a-z and space if (ev.ctrlKey) {