Merge pull request #7754 from minrk/screenKeys

disable screenKeys in term.js (enables things like `Ctrl-a` to work as expected in the terminal)
This commit is contained in:
Fernando Perez 2015-02-11 14:46:01 -08:00
commit 74ca347028

View File

@ -6,7 +6,7 @@ define ([], function() {
var term = new Terminal({
cols: size.cols,
rows: size.rows,
screenKeys: true,
screenKeys: false,
useStyle: false
});
ws.onopen = function(event) {