diff options
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index f43bd02b..7d9839aa 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -40,6 +40,7 @@ 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.    # We sort modifiers here to match the order used in keyboard_utils.coffee. +  # The return value is a sequence of keys: e.g. "<Space><c-A>b" -> ["<space>", "<c-A>", "b"].    normalizeKey: (key) ->      if key.length == 0        [] | 
