aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/settings')
-rw-r--r--src/shared/settings/default.js1
-rw-r--r--src/shared/settings/properties.js3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/shared/settings/default.js b/src/shared/settings/default.js
index 9ba2d64..4163064 100644
--- a/src/shared/settings/default.js
+++ b/src/shared/settings/default.js
@@ -74,7 +74,6 @@ export default {
"properties": {
"hintchars": "abcdefghijklmnopqrstuvwxyz",
"smoothscroll": false,
- "adjacenttab": true,
"complete": "sbh"
},
"blacklist": [
diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js
index 284de6c..96f10ac 100644
--- a/src/shared/settings/properties.js
+++ b/src/shared/settings/properties.js
@@ -5,7 +5,6 @@
const types = {
hintchars: 'string',
smoothscroll: 'boolean',
- adjacenttab: 'boolean',
complete: 'string',
};
@@ -13,14 +12,12 @@ const types = {
const defaults = {
hintchars: 'abcdefghijklmnopqrstuvwxyz',
smoothscroll: false,
- adjacenttab: true,
complete: 'sbn',
};
const docs = {
hintchars: 'hint characters on follow mode',
smoothscroll: 'smooth scroll',
- adjacenttab: 'open adjacent tabs',
complete: 'which are completed at the open page',
};