aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/link_hints.coffee
diff options
context:
space:
mode:
authorChristopher Manning2012-12-09 20:44:47 -0600
committerChristopher Manning2012-12-09 20:44:47 -0600
commit4c491235e7953f5a884dcd8b61d2512d74cb32b8 (patch)
treeaef056303767055f2584d058e22fa65d44c9648b /content_scripts/link_hints.coffee
parentb7ac8b14da25232d2306ffe51e4bf789ff8ea295 (diff)
downloadvimium-4c491235e7953f5a884dcd8b61d2512d74cb32b8.tar.bz2
Don't close link hints when shift is pressed
Diffstat (limited to 'content_scripts/link_hints.coffee')
-rw-r--r--content_scripts/link_hints.coffee2
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