diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-11 21:58:41 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-07-11 21:58:41 +0900 |
commit | 1e39fed6183bf3b10f48eb52868bb5ab3fe3134f (patch) | |
tree | dd4c311d90e7212287b2ba2ce6a19eb6fcc38ab9 /src/shared/settings/properties.js | |
parent | a28f6f916d77baf87e3c023abbd6494e009a8d12 (diff) |
Complete set commands
Diffstat (limited to 'src/shared/settings/properties.js')
-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 }; |