diff options
| author | Stephen Blott | 2016-02-28 15:35:10 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-03-05 05:39:33 +0000 |
| commit | b0d2f3bfbc36232c235f913131c78a5bb76b59c3 (patch) | |
| tree | 104c3cc8069a6523fdec5e59b551a59b66549354 /content_scripts | |
| parent | b63683a1026e12bfd7bff6b8745d18e3b858bf92 (diff) | |
| download | vimium-b0d2f3bfbc36232c235f913131c78a5bb76b59c3.tar.bz2 | |
Key bindings; and yet more minor tweaks.
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/mode_key_handler.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/mode_key_handler.coffee b/content_scripts/mode_key_handler.coffee index 265ceed1..97966644 100644 --- a/content_scripts/mode_key_handler.coffee +++ b/content_scripts/mode_key_handler.coffee @@ -93,7 +93,7 @@ class KeyHandlerMode extends Mode # This tests whether keyChar would be the very first character of a command mapping. isFirstKeyChar: (keyChar) -> - keyChar and @countPrefix == 0 and (@mappingForKeyChar(keyChar) == @keyMapping or @isCountKey keyChar) + @countPrefix == 0 and (@mappingForKeyChar(keyChar) == @keyMapping or @isCountKey keyChar) root = exports ? window root.KeyHandlerMode = KeyHandlerMode |
