aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJez Ng2012-12-16 12:03:05 -0800
committerJez Ng2012-12-16 12:03:05 -0800
commit0a06e935dd8709ea56f565faa5bcc6e9c5ef3808 (patch)
treec416161da2e6be57cea0fb2f2404be12dfdf85df
parent12e409615a78e23266a89fd46575943b60178763 (diff)
parent4c491235e7953f5a884dcd8b61d2512d74cb32b8 (diff)
downloadvimium-0a06e935dd8709ea56f565faa5bcc6e9c5ef3808.tar.bz2
Merge pull request #744 from christophermanning/issue-697
Don't close link hints when shift is pressed
-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