diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-10-03 23:31:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 23:31:57 +0000 |
commit | 7fc2bb615f530fc6adfade54b9553568f5d50ceb (patch) | |
tree | fbbc229c2c29ea77d0645a279f321dbe1162e88b /docs/properties.md | |
parent | 938a10a5911209d5427a6f2369a062a9309ff3dc (diff) | |
parent | 26aee53e4d61881d270e73721865ae5fa6570743 (diff) |
Merge pull request #653 from cirelli94/patch-7
Update properties.md for clarification
Diffstat (limited to 'docs/properties.md')
-rw-r--r-- | docs/properties.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/properties.md b/docs/properties.md index 1f62ff4..921fbff 100644 --- a/docs/properties.md +++ b/docs/properties.md @@ -9,11 +9,13 @@ Vim Vixen can be configured by defining settings in a JSON document, e.g.: ```json { "properties": { + "smoothscroll": true, + "hintchars": "abcdefghijklmnopqrstuvwxyz", "complete": "sbh" } } ``` - +If a property is not set, it will be used the default. Properties can be temporarily overridden by using the `:set` command in the console. @@ -30,7 +32,7 @@ Enable/disable smooth scrolling. ## `hintchars` -Set hint characters. +Set hint characters. They will be used to follow links in the page. ``` :set hintchars=0123456789 |