From 77c6fe5180736370cbffdbafbd4d01d6cf99aad4 Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Sat, 16 Dec 2017 06:53:01 +0000 Subject: Fix rotate hints for filtered hints. We should rotate on `` too. --- content_scripts/link_hints.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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. -- cgit v1.2.3