aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/mode_insert.coffee
diff options
context:
space:
mode:
authorStephen Blott2016-02-20 07:01:54 +0000
committerStephen Blott2016-02-20 07:01:54 +0000
commit8cf72842ad516cba7eb161ae650d48a298e55442 (patch)
treef68eda11245ed7ad02affafacf805bb0e89aa2e6 /content_scripts/mode_insert.coffee
parent476d6ee707486f2731753b937566f0fe28df4a8e (diff)
downloadvimium-8cf72842ad516cba7eb161ae650d48a298e55442.tar.bz2
hideHUD option applies to insert mode only.
This makes the `hideHud` option apply only to insert mode (when entered with `i`). Fixes #1953. Fixes #487. We could rename the option itself and add migration code, but that seems overkill. An alternative would be to remove this option entirely.
Diffstat (limited to 'content_scripts/mode_insert.coffee')
-rw-r--r--content_scripts/mode_insert.coffee2
1 files changed, 1 insertions, 1 deletions
diff --git a/content_scripts/mode_insert.coffee b/content_scripts/mode_insert.coffee
index a35633ac..93615b8f 100644
--- a/content_scripts/mode_insert.coffee
+++ b/content_scripts/mode_insert.coffee
@@ -30,7 +30,7 @@ class InsertMode extends Mode
defaults =
name: "insert"
- indicator: if @permanent then null else "Insert mode"
+ indicator: if not @permanent and not Settings.get "hideHud" then "Insert mode"
keypress: handleKeyEvent
keyup: handleKeyEvent
keydown: handleKeyEvent