This repository has been archived on 2020-04-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Vim-Vixen/src/shared/settings/properties.js
Shin'ya Ueoka daefddf8b8 Make adjacenttab true in default
Click with Ctrl key opens a tab adjacently.
2018-05-01 14:02:53 +09:00

18 lines
381 B
JavaScript

// describe types of a propety as:
// mystr: 'string',
// mynum: 'number',
// mybool: 'boolean',
const types = {
hintchars: 'string',
smoothscroll: 'boolean',
adjacenttab: 'boolean',
};
// describe default values of a property
const defaults = {
hintchars: 'abcdefghijklmnopqrstuvwxyz',
smoothscroll: false,
adjacenttab: true,
};
export { types, defaults };