Remove adjacenttab

This commit is contained in:
Shin'ya Ueoka 2018-10-13 22:27:58 +09:00
parent 8b72aac09a
commit 6c6dc23f97
6 changed files with 2 additions and 40 deletions

View file

@ -74,7 +74,6 @@ export default {
"properties": {
"hintchars": "abcdefghijklmnopqrstuvwxyz",
"smoothscroll": false,
"adjacenttab": true,
"complete": "sbh"
},
"blacklist": [

View file

@ -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',
};