aboutsummaryrefslogtreecommitdiff
path: root/src/shared/settings
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-13 22:30:05 +0900
committerGitHub <noreply@github.com>2018-07-13 22:30:05 +0900
commit28bfa3ac8124d3453cd539db26da4f4703e783df (patch)
treedd4461af8343a7d5c9fc13cc51cd0fd5edd0285e /src/shared/settings
parent37840c2abb02948d36cdcfaab9063f3ea67fdb6b (diff)
parent803e6ea7af60107182356b5fda8e3c2ddfacaefa (diff)
Merge pull request #431 from ueokande/command-completions
Command completions
Diffstat (limited to 'src/shared/settings')
-rw-r--r--src/shared/settings/properties.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/shared/settings/properties.js b/src/shared/settings/properties.js
index 4bda8d6..b392cbb 100644
--- a/src/shared/settings/properties.js
+++ b/src/shared/settings/properties.js
@@ -15,4 +15,10 @@ const defaults = {
adjacenttab: true,
};
-export { types, defaults };
+const docs = {
+ hintchars: 'Hint characters on follow mode',
+ smoothscroll: 'smooth scroll',
+ adjacenttab: 'open adjacent tabs',
+};
+
+export { types, defaults, docs };