diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-10-13 22:27:58 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-10-13 22:40:08 +0900 |
commit | 6c6dc23f97f485fede0b8d91c06c37490f890320 (patch) | |
tree | f1747c946de605744489c7bfb53c16829c41eda3 /src/shared | |
parent | 8b72aac09af476e19da7e482e43769d47d1969b2 (diff) |
Remove adjacenttab
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/settings/default.js | 1 | ||||
-rw-r--r-- | src/shared/settings/properties.js | 3 |
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', }; |