diff options
| author | Jez Ng | 2012-12-16 12:03:05 -0800 |
|---|---|---|
| committer | Jez Ng | 2012-12-16 12:03:05 -0800 |
| commit | 0a06e935dd8709ea56f565faa5bcc6e9c5ef3808 (patch) | |
| tree | c416161da2e6be57cea0fb2f2404be12dfdf85df | |
| parent | 12e409615a78e23266a89fd46575943b60178763 (diff) | |
| parent | 4c491235e7953f5a884dcd8b61d2512d74cb32b8 (diff) | |
| download | vimium-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.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 |
