Copy explanations into help doc.

Explanations copied from #56.
This commit is contained in:
David Briscoe
2019-04-02 21:52:30 -07:00
parent afbf309610
commit daec72cea1

View File

@@ -621,13 +621,24 @@ the function |timer_pause|, version 7.4.2180 and after. For neovim, this
will only work in nvim-0.2.1 and after.
*g:matchup_matchparen_deferred_show_delay*
*g:matchup_matchparen_deferred_hide_delay*
Adjust delays in milliseconds for deferred highlighting.
Delay, in milliseconds, between when the cursor moves and when we start
checking if the cursor is on a match. Applies to both making highlights and
clearing them for deferred highlighting.
Note: these delays cannot be changed dynamically and should be configured
before the plugin loads (e.g., in your vimrc).
Defaults: 50, 700
Defaults: 50
*g:matchup_matchparen_deferred_hide_delay*
If the cursor has not stopped moving, assume highlight is stale after this
many milliseconds. Stale highlights are hidden.
Note: this option cannot be changed dynamically.
Defaults: 700
*g:matchup_matchparen_deferred_fade_time* *matchup-fading*