Skip to content

Commit

Permalink
Update the documentation.
Browse files Browse the repository at this point in the history
Make it explicit that `mucomplete#completion_delay` only accepts integers.

Fixes #191.
  • Loading branch information
lifepillar committed Mar 14, 2021
1 parent 80b13cb commit 83cd9b3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/mucomplete.txt
Expand Up @@ -545,11 +545,11 @@ completion chains. For example:
*'g:mucomplete#completion_delay'*
Set to a positive value if you want autocompletion to be triggered only when
you pause typing (autocompletion must be on for this to work). When set to 0,
no delay occurs. If this is set to 1, or it is set to a positive value but Vim
does not have the |+timers| feature, then |'updatetime'| is used for the delay
(see also |CursorHoldI|). If Vim is built with |+timers| and this is set to
a value greater than 1 then the value is interpreted as the number of
milliseconds to wait before triggering auto-completion.
no delay occurs. If this is set to 1, or it is set to a positive integer value
but Vim does not have the |+timers| feature, then |'updatetime'| is used for
the delay (see also |CursorHoldI|). If Vim is built with |+timers| and this is
set to an integer value greater than 1 then the value is interpreted as the
number of milliseconds to wait before triggering auto-completion.
>
let g:mucomplete#completion_delay = 0
<
Expand Down

0 comments on commit 83cd9b3

Please sign in to comment.