aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Blott2017-12-16 06:53:01 +0000
committerStephen Blott2017-12-16 06:53:03 +0000
commit77c6fe5180736370cbffdbafbd4d01d6cf99aad4 (patch)
treea593ace854ba7596eb253b6c0605e630fe58b9f4
parent3d9fcc58a04de50821f2457f66159425b50c4eb5 (diff)
downloadvimium-77c6fe5180736370cbffdbafbd4d01d6cf99aad4.tar.bz2
Fix rotate hints for filtered hints.
We should rotate on `<Shift-Space>` too.
-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.