diff options
| author | Christopher Manning | 2012-12-09 20:44:47 -0600 |
|---|---|---|
| committer | Christopher Manning | 2012-12-09 20:44:47 -0600 |
| commit | 4c491235e7953f5a884dcd8b61d2512d74cb32b8 (patch) | |
| tree | aef056303767055f2584d058e22fa65d44c9648b /content_scripts | |
| parent | b7ac8b14da25232d2306ffe51e4bf789ff8ea295 (diff) | |
| download | vimium-4c491235e7953f5a884dcd8b61d2512d74cb32b8.tar.bz2 | |
Don't close link hints when shift is pressed
Diffstat (limited to 'content_scripts')
| -rw-r--r-- | content_scripts/link_hints.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/link_hints.coffee b/content_scripts/link_hints.coffee index 9b381a9c..32eb6ad5 100644 --- a/content_scripts/link_hints.coffee +++ b/content_scripts/link_hints.coffee @@ -173,7 +173,7 @@ LinkHints = # TODO(philc): Ignore keys that have modifiers. if (KeyboardUtils.isEscape(event)) @deactivateMode() - else + else if (event.keyCode != keyCodes.shiftKey) keyResult = @markerMatcher.matchHintsByKey(hintMarkers, event) linksMatched = keyResult.linksMatched delay = keyResult.delay ? 0 |
