diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-11-18 17:13:52 +0100 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2015-11-18 17:13:52 +0100 |
commit | 7243a8f388f8a47e74d5563968b5354a0969a927 (patch) | |
tree | 62b38520abdf7dc71e2f46df14cc460ab846c7ca | |
parent | 08d1d5bed045029fc389c8043f3a2adf83aa6308 (diff) |
Allow tabbing out of console
-rw-r--r-- | js/codeq/console.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/js/codeq/console.js b/js/codeq/console.js index cee3aac..63d01fc 100644 --- a/js/codeq/console.js +++ b/js/codeq/console.js @@ -17,7 +17,6 @@ 'End': function () { this.moveToEndOfLine(); return false; }, 'Home': function () { this.moveToStartOfLine(); return false; }, 'Enter': function () { return true; }, // if it returns false in line-buffered mode, then a line will never be formed -> no input ever - 'Tab': noop }, '100': { 'Backspace': function () { this.deleteCharacterLeft(); return false; }, |