Doc: update g:signify_realtime

This commit is contained in:
Marco Hinz 2017-02-18 20:26:40 +01:00
parent 5940039dcf
commit e8252ba44d
No known key found for this signature in database
GPG Key ID: 1C980A1B657B4A4F

View File

@ -189,27 +189,24 @@ So either the one you set through |g:signify_difftool| or "diff" by default.
*g:signify_realtime* > *g:signify_realtime* >
let g:signify_realtime = 0 let g:signify_realtime = 0
< <
By default, Sy only updates signs on: By default, signs only update on:
|BufRead| (opening a buffer) |BufRead| (opening a buffer)
|BufWritePost| (saving a buffer) |BufWritePost| (saving a buffer)
If that seems too conservative to you and you want more aggressive sign With this option enabled, signs update on:
updates, enable this option.
This will update signs on:
|BufEnter| (opening or switching to another buffer) |BufEnter| (opening or switching to another buffer)
|WinEnter| (opening or switching to another window) |WinEnter| (opening or switching to another window)
|BufWritePost| (saving a buffer) |BufWritePost| (saving a buffer)
|CursorHold| (cursor in normal mode wasn't moved for 'updatetime') |CursorHold| (cursor in normal mode wasn't moved; also saves file)
|CursorHoldI| (cursor in insert mode wasn't moved for 'updatetime') |CursorHoldI| (cursor in insert mode wasn't moved; also saves file)
|FocusGained| (when the OS window containing Vim got focus) |FocusGained| (OS window containing Vim got focus)
NOTE: Running Sy on all these events would block too often for older Vim NOTE: Running Sy on all these events would block too often for older Vim
versions, thus this option requires Vim 7.4.1967+, which is the minimum versions, thus this option requires Vim 7.4.1967+, which is the minimum
version Sy needs for asynchronous execution. Older Vim versions silently version needed for asynchronous execution. Older Vim versions silently ignore
ignore this option. this option.
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
*g:signify_vcs_cmds* > *g:signify_vcs_cmds* >