aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/commands.coffee
diff options
context:
space:
mode:
authorStephen Blott2015-05-20 19:46:51 +0100
committerStephen Blott2015-05-20 19:47:12 +0100
commit81a22885c14b3cb12dc11484b01a689f1e0c2e46 (patch)
tree5e97774896e2ed8d59c2bcd59a8d3f73f12cf2ea /background_scripts/commands.coffee
parent0ac2cf831592d08c7cd42b6f0ea6bfae6fb926b6 (diff)
downloadvimium-81a22885c14b3cb12dc11484b01a689f1e0c2e46.tar.bz2
Allowing mapping <space>.
Fixes #544. Copy of #655.
Diffstat (limited to 'background_scripts/commands.coffee')
-rw-r--r--background_scripts/commands.coffee1
1 files changed, 1 insertions, 0 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index bca1c3a4..708fe5d5 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -52,6 +52,7 @@ Commands =
key.replace(/<[acm]-/ig, (match) -> match.toLowerCase())
.replace(/<([acm]-)?([a-zA-Z0-9]{2,5})>/g, (match, optionalPrefix, keyName) ->
"<" + (if optionalPrefix then optionalPrefix else "") + keyName.toLowerCase() + ">")
+ .replace /<space>/ig, " "
parseCustomKeyMappings: (customKeyMappings) ->
lines = customKeyMappings.split("\n")