diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/_layouts/default.html | 2 | ||||
-rw-r--r-- | docs/properties.md | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index e915e41..40080b5 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -20,7 +20,7 @@ <header> <h1><a href='index.html'>Vim Vixen</a></h1> <ul> - <li><a target="_blank" rel="noopener" href='https://github.com/ueokande/vim-vixen'>GtiHub</a></li> + <li><a target="_blank" rel="noopener" href='https://github.com/ueokande/vim-vixen'>GitHub</a></li> <li><a target="_blank" rel="noopener" href='https://addons.mozilla.org/firefox/addon/vim-vixen/'>Firefox Add-ons</a></li> </ul> </header> 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 |