aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorLoong Wang <wangl.cc@outlook.com>2022-04-11 06:56:08 +0800
committerGitHub <noreply@github.com>2022-04-10 15:56:08 -0700
commitb2cb05b53e61d162044f71227e0ffeacbf59a4bb (patch)
treec77977149695bd3fa3598c80e704cac489635244 /runtime
parent8bdcd832ae225d7d479a7eb6ca89d097f44e80f7 (diff)
downloadrneovim-b2cb05b53e61d162044f71227e0ffeacbf59a4bb.tar.gz
rneovim-b2cb05b53e61d162044f71227e0ffeacbf59a4bb.tar.bz2
rneovim-b2cb05b53e61d162044f71227e0ffeacbf59a4bb.zip
feat(events): support SIGWINCH for Signal event #18029
closes #15411
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/autocmd.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt
index 7cfac4b5d1..e3cd28e353 100644
--- a/runtime/doc/autocmd.txt
+++ b/runtime/doc/autocmd.txt
@@ -870,7 +870,7 @@ ShellCmdPost After executing a shell command with |:!cmd|,
*Signal*
Signal After Nvim receives a signal. The pattern is
matched against the signal name. Only
- "SIGUSR1" is supported. Example: >
+ "SIGUSR1" and "SIGWINCH" are supported. Example: >
autocmd Signal SIGUSR1 call some#func()
< *ShellFilterPost*
ShellFilterPost After executing a shell command with