aboutsummaryrefslogtreecommitdiffstats
path: root/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands.js')
-rw-r--r--commands.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.js b/commands.js
index 81d9ef52..08481280 100644
--- a/commands.js
+++ b/commands.js
@@ -28,7 +28,7 @@ function parseCustomKeyMappings(customKeyMappings) {
for (var i = 0; i < lines.length; i++) {
if (lines[i][0] == "\"" || lines[i][0] == "#") { continue }
- split_line = lines[i].split(" "); // TODO(ilya): Support all whitespace.
+ split_line = lines[i].split(/\s+/);
var lineCommand = split_line[0];