diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/settings/default.js | 4 | ||||
-rw-r--r-- | src/shared/settings/properties.js | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/shared/settings/default.js b/src/shared/settings/default.js index 3c4dcac..7de5b51 100644 --- a/src/shared/settings/default.js +++ b/src/shared/settings/default.js @@ -37,8 +37,8 @@ export default { "zi": { "type": "zoom.in" }, "zo": { "type": "zoom.out" }, "zz": { "type": "zoom.neutral" }, - "f": { "type": "follow.start", "newTab": false }, - "F": { "type": "follow.start", "newTab": true }, + "f": { "type": "follow.start", "newTab": false, "background": false }, + "F": { "type": "follow.start", "newTab": true, "background": false }, "H": { "type": "navigate.history.prev" }, "L": { "type": "navigate.history.next" }, "[[": { "type": "navigate.link.prev" }, diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js index 37dc881..7093f2b 100644 --- a/src/shared/settings/properties.js +++ b/src/shared/settings/properties.js @@ -5,12 +5,14 @@ const types = { hintchars: 'string', smoothscroll: 'boolean', + adjacenttab: 'boolean', }; // describe default values of a property const defaults = { hintchars: 'abcdefghijklmnopqrstuvwxyz', smoothscroll: false, + adjacenttab: false, }; export { types, defaults }; |