diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/autocmd.txt | 6 | ||||
-rw-r--r-- | runtime/doc/options.txt | 6 | ||||
-rw-r--r-- | runtime/doc/vim_diff.txt | 1 |
3 files changed, 9 insertions, 4 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index d7b74f99c2..6423939b83 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -353,6 +353,8 @@ Name triggered by ~ |CompleteDone| after Insert mode completion is done |User| to be used in combination with ":doautocmd" +|Signal| after the nvim process received a signal + The alphabetical list of autocommand events: *autocmd-events-abc* @@ -914,6 +916,10 @@ ShellCmdPost After executing a shell command with |:!cmd|, any changed files. For non-blocking shell commands, see |job-control|. + *Signal* +Signal After the nvim process received a signal. + The pattern is matched against the name of the + received signal. Only "SIGUSR1" is supported. *ShellFilterPost* ShellFilterPost After executing a shell command with ":{range}!cmd", ":w !cmd" or ":r !cmd". diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index b6ea63449d..d0643bf5ed 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -4761,14 +4761,12 @@ A jump table for the options with a short description can be found at |Q_op|. height with ":set scroll=0". *'scrollback'* *'scbk'* -'scrollback' 'scbk' number (default: 10000 - in normal buffers: -1) +'scrollback' 'scbk' number (default: 10000) local to buffer Maximum number of lines kept beyond the visible screen. Lines at the top are deleted if new lines exceed this limit. + Minimum is 1, maximum is 100000. Only in |terminal| buffers. - -1 means "unlimited" for normal buffers, 100000 otherwise. - Minimum is 1. *'scrollbind'* *'scb'* *'noscrollbind'* *'noscb'* 'scrollbind' 'scb' boolean (default off) diff --git a/runtime/doc/vim_diff.txt b/runtime/doc/vim_diff.txt index 36630d14ac..33260ab53b 100644 --- a/runtime/doc/vim_diff.txt +++ b/runtime/doc/vim_diff.txt @@ -142,6 +142,7 @@ Commands: Events: |DirChanged| + |Signal| |TabNewEntered| |TermClose| |TermOpen| |