aboutsummaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-10-15 08:21:08 +0900
committerGitHub <noreply@github.com>2018-10-15 08:21:08 +0900
commitb0490c0cdd1fa835ac8f1640265c795bc4845494 (patch)
treef1747c946de605744489c7bfb53c16829c41eda3 /src/shared
parent8b72aac09af476e19da7e482e43769d47d1969b2 (diff)
parent6c6dc23f97f485fede0b8d91c06c37490f890320 (diff)
Merge pull request #487 from ueokande/remove-adjacenttab-prperty
Remove adjacenttab
Diffstat (limited to 'src/shared')
-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',
};