aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content_scripts/hud.coffee3
-rw-r--r--content_scripts/mode_insert.coffee2
-rw-r--r--pages/options.html4
3 files changed, 4 insertions, 5 deletions
diff --git a/content_scripts/hud.coffee b/content_scripts/hud.coffee
index 5a3d9b79..453d6522 100644
--- a/content_scripts/hud.coffee
+++ b/content_scripts/hud.coffee
@@ -87,8 +87,7 @@ HUD =
DomUtils.documentReady -> ready = true
-> ready and document.body != null
- # A preference which can be toggled in the Options page. */
- enabled: -> !Settings.get("hideHud")
+ enabled: -> true
class Tween
opacity: 0
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
diff --git a/pages/options.html b/pages/options.html
index ac515db9..e859a5e8 100644
--- a/pages/options.html
+++ b/pages/options.html
@@ -163,12 +163,12 @@ b: http://b.com/?q=%s description
<td verticalAlign="top" class="booleanOption">
<div class="help">
<div class="example">
- When enabled, the HUD will not be displayed.
+ When enabled, the HUD will not be displayed in insert mode.
</div>
</div>
<label>
<input id="hideHud" type="checkbox"/>
- Hide the Heads Up Display (HUD)
+ Hide the Heads Up Display (HUD) in insert mode
</label>
</td>
</tr>