diff options
| author | Stephen Blott | 2014-09-05 10:59:20 +0100 |
|---|---|---|
| committer | Stephen Blott | 2014-09-06 12:28:40 +0100 |
| commit | 643e49aa3109b9a25b38ce5d6b59bb11bc6337b1 (patch) | |
| tree | fcbfa9c0fe1a2a9e598ff9735301c8eb6c2913ae /background_scripts/settings.coffee | |
| parent | 2f27d4590ba30f5a443aedff12d9611a83a4f771 (diff) | |
| download | vimium-643e49aa3109b9a25b38ce5d6b59bb11bc6337b1.tar.bz2 | |
Structured passkeys; changes following code review; major rewrite of options.
Diffstat (limited to 'background_scripts/settings.coffee')
| -rw-r--r-- | background_scripts/settings.coffee | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/background_scripts/settings.coffee b/background_scripts/settings.coffee index 63dd851b..7150fcba 100644 --- a/background_scripts/settings.coffee +++ b/background_scripts/settings.coffee @@ -61,6 +61,7 @@ root.Settings = Settings = # or strings defaults: scrollStepSize: 60 + keyMappings: "# Insert your prefered key mappings here." linkHintCharacters: "sadfjklewcmpgh" linkHintNumbers: "0123456789" filterLinkHints: false @@ -87,9 +88,8 @@ root.Settings = Settings = # Default exclusion rules. exclusionRules: [ - # Disable Vimium on Google Reader, and use Gmail's own j/k bindings. - { pattern: "http*://www.google.com/reader/*", passKeys: "" } - { pattern: "http*://mail.google.com/*", passKeys: "jk" } + # Disable Vimium on Gmail. + { pattern: "http*://mail.google.com/*", passKeys: "" } ] # NOTE: If a page contains both a single angle-bracket link and a double angle-bracket link, then in |
