aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings/properties.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/settings/properties.js')
-rw-r--r--src/shared/settings/properties.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js
index e8d06da..284de6c 100644
--- a/src/shared/settings/properties.js
+++ b/src/shared/settings/properties.js
@@ -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 };