diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-13 22:30:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-13 22:30:05 +0900 |
commit | 28bfa3ac8124d3453cd539db26da4f4703e783df (patch) | |
tree | dd4461af8343a7d5c9fc13cc51cd0fd5edd0285e /src/shared/settings | |
parent | 37840c2abb02948d36cdcfaab9063f3ea67fdb6b (diff) | |
parent | 803e6ea7af60107182356b5fda8e3c2ddfacaefa (diff) |
Merge pull request #431 from ueokande/command-completions
Command completions
Diffstat (limited to 'src/shared/settings')
-rw-r--r-- | src/shared/settings/properties.js | 8 |
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 }; |