diff options
| author | Stephen Blott | 2016-10-02 09:40:56 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-10-02 09:40:56 +0100 | 
| commit | d0092f4f078a7b590746092c78b91da35c6a403e (patch) | |
| tree | 5432d439319643cf846c440304e1f7be0d62183e | |
| parent | 4305730d512276fd929eaf12b8c134e69df52437 (diff) | |
| download | vimium-d0092f4f078a7b590746092c78b91da35c6a403e.tar.bz2 | |
Single quotes are clearer here.
| -rw-r--r-- | background_scripts/commands.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 09149786..e1f82b72 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -49,7 +49,7 @@ Commands =        keyChar = keyChar.toLowerCase() unless keyChar.length == 1        modifiers = (modifier.toLowerCase() for modifier in modifiers)        modifiers.sort() -      ["<#{[modifiers..., keyChar].join "-"}>", @parseKeySequence(RegExp.$2)...] +      ["<#{[modifiers..., keyChar].join '-'}>", @parseKeySequence(RegExp.$2)...]      else        [key[0], @parseKeySequence(key[1..])...] | 
