Add complete property

This commit is contained in:
Shin'ya Ueoka 2018-08-29 22:07:32 +09:00
parent 1b77846382
commit bab8066af8
3 changed files with 27 additions and 12 deletions

View file

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

View file

@ -6,6 +6,7 @@ const types = {
hintchars: 'string',
smoothscroll: 'boolean',
adjacenttab: 'boolean',
complete: 'string',
};
// describe default values of a property
@ -13,12 +14,14 @@ 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',
};
export { types, defaults, docs };