diff options
| author | Jez Ng | 2012-09-04 15:23:29 -0400 |
|---|---|---|
| committer | Jez Ng | 2012-09-04 15:23:29 -0400 |
| commit | eb0955875ba6ba77a90b1e411c42be0df6de950d (patch) | |
| tree | 45aac8cd0e19e209cf37c199a7c89b3972f63df9 /background_scripts/commands.coffee | |
| parent | 525276bde9b99d05b133f96f21e1ac187c068bb6 (diff) | |
| download | vimium-eb0955875ba6ba77a90b1e411c42be0df6de950d.tar.bz2 | |
Style fixes.
Errors were detected using coffeelint.
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index e3001f4f..69c37ac4 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -43,9 +43,9 @@ Commands = # On the other hand, <c-a> and <c-A> are different named keys - for one of # them you have to press "shift" as well. normalizeKey: (key) -> - 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() + ">") + 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() + ">") parseCustomKeyMappings: (customKeyMappings) -> lines = customKeyMappings.split("\n") |
