aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/mode_find.coffee
diff options
context:
space:
mode:
authorStephen Blott2016-03-26 12:05:32 +0000
committerStephen Blott2016-03-26 12:05:32 +0000
commitebcfe61f785c9717065d4196b60198c2e10a462d (patch)
tree3c8dbe325a592e27eb7f664d53682b9e927e8227 /content_scripts/mode_find.coffee
parent7875b5da15998fd4c3f705b08bc0a5972bddce25 (diff)
parent9bc02b6fe8329fc6342196070f68f1657075c3db (diff)
downloadvimium-ebcfe61f785c9717065d4196b60198c2e10a462d.tar.bz2
Merge pull request #2062 from smblott-github/rework-visual-mode
Rework visual mode
Diffstat (limited to 'content_scripts/mode_find.coffee')
-rw-r--r--content_scripts/mode_find.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/content_scripts/mode_find.coffee b/content_scripts/mode_find.coffee
index e863b553..ad7cc136 100644
--- a/content_scripts/mode_find.coffee
+++ b/content_scripts/mode_find.coffee
@@ -33,8 +33,8 @@ class PostFindMode extends SuppressPrintable
super
name: "post-find"
- # PostFindMode shares a singleton with the modes launched by focusInput; each displaces the other.
- singleton: element
+ # PostFindMode shares a singleton with focusInput; each displaces the other.
+ singleton: "post-find-mode/focus-input"
exitOnBlur: element
exitOnClick: true
keydown: (event) -> InsertMode.suppressEvent event # Always truthy, so always continues bubbling.