aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/link_hints.coffee
diff options
context:
space:
mode:
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 e5c6b3ea..7cd2dfbf 100644
--- a/content_scripts/link_hints.coffee
+++ b/content_scripts/link_hints.coffee
@@ -589,7 +589,7 @@ class FilterHints
# For filtered hints, we require a modifier (because <Space> on its own is a token separator).
shouldRotateHints: (event) ->
- event.ctrlKey or event.altKey or event.metaKey
+ event.ctrlKey or event.altKey or event.metaKey or event.shiftKey
#
# Make each hint character a span, so that we can highlight the typed characters as you type them.