From 7243a8f388f8a47e74d5563968b5354a0969a927 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Wed, 18 Nov 2015 17:13:52 +0100 Subject: Allow tabbing out of console --- js/codeq/console.js | 1 - 1 file changed, 1 deletion(-) 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; }, -- cgit v1.2.1