diff options
| author | Stephen Blott | 2015-06-14 07:40:13 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-06-14 07:40:20 +0100 |
| commit | aa00e29dc2533b6701c65935223599671c5833b1 (patch) | |
| tree | 6a926b6e1d46d365722ba69fa4a58b2247869ff3 | |
| parent | 532fa0779fd4733fc8a4bec963cd6c73a91b35f2 (diff) | |
| download | vimium-aa00e29dc2533b6701c65935223599671c5833b1.tar.bz2 | |
Add default value for regexFindMode setting.
Because we haven't had a default value for this setting, we never sync
it, which means -- when its not at its default value -- it isn't picked
up in content scripts by the new settings system.
Fixes #1731.
| -rw-r--r-- | lib/settings.coffee | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/settings.coffee b/lib/settings.coffee index ca4e77b0..842f7618 100644 --- a/lib/settings.coffee +++ b/lib/settings.coffee @@ -146,6 +146,7 @@ Settings = """ newTabUrl: "chrome://newtab" grabBackFocus: false + regexFindMode: false settingsVersion: Utils.getCurrentVersion() helpDialog_showAdvancedCommands: false |
