Update docs

This commit is contained in:
Florian Bruhin 2017-10-16 08:17:45 +02:00
parent 3797b0cfed
commit 09868c1e7f
3 changed files with 22 additions and 2 deletions

View File

@ -23,6 +23,8 @@ Added
- New `{current_url}` field for `window.title_format` and `tabs.title.format`.
- New `colors.statusbar.passthrough.fg`/`.bg` settings.
- New `completion.delay` and `completion.min_chars` settings to update the
completion less often.
v1.0.2 (unreleased)
-------------------

View File

@ -96,7 +96,9 @@
|<<colors.tabs.selected.odd.fg,colors.tabs.selected.odd.fg>>|Foreground color of selected odd tabs.
|<<colors.webpage.bg,colors.webpage.bg>>|Background color for webpages if unset (or empty to use the theme's color)
|<<completion.cmd_history_max_items,completion.cmd_history_max_items>>|How many commands to save in the command history.
|<<completion.delay,completion.delay>>|Delay in ms before updating completions after typing a character.
|<<completion.height,completion.height>>|The height of the completion, in px or as percentage of the window.
|<<completion.min_chars,completion.min_chars>>|Minimum amount of characters needed to update completions.
|<<completion.quick,completion.quick>>|Move on to the next part when there's only one possible completion left.
|<<completion.scrollbar.padding,completion.scrollbar.padding>>|Padding of scrollbar handle in the completion window (in px).
|<<completion.scrollbar.width,completion.scrollbar.width>>|Width of the scrollbar in the completion window (in px).
@ -1311,6 +1313,14 @@ Type: <<types,Int>>
Default: +pass:[100]+
[[completion.delay]]
=== completion.delay
Delay in ms before updating completions after typing a character.
Type: <<types,Int>>
Default: +pass:[0]+
[[completion.height]]
=== completion.height
The height of the completion, in px or as percentage of the window.
@ -1319,6 +1329,14 @@ Type: <<types,PercOrInt>>
Default: +pass:[50%]+
[[completion.min_chars]]
=== completion.min_chars
Minimum amount of characters needed to update completions.
Type: <<types,Int>>
Default: +pass:[1]+
[[completion.quick]]
=== completion.quick
Move on to the next part when there's only one possible completion left.

View File

@ -683,14 +683,14 @@ completion.delay:
type:
name: Int
minval: 0
desc: Delay in ms before updating completions after typing a character
desc: Delay in ms before updating completions after typing a character.
completion.min_chars:
default: 1
type:
name: Int
minval: 1
desc: Minimum amount of characters needed to update completions
desc: Minimum amount of characters needed to update completions.
## downloads