diff options
author | geekodour <hrishikeshbman@gmail.com> | 2018-04-14 19:21:22 +0530 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-04-15 15:05:02 +0200 |
commit | 1e71978cf032b4a8c3f27e11e6fbafc4fd2ab8db (patch) | |
tree | 6a38461978a3275d2674afd0ff449b97931eaece /runtime/doc/autocmd.txt | |
parent | 1e7d5e8cdf9827978f42ea114cfd85f9d32b00eb (diff) | |
download | rneovim-1e71978cf032b4a8c3f27e11e6fbafc4fd2ab8db.tar.gz rneovim-1e71978cf032b4a8c3f27e11e6fbafc4fd2ab8db.tar.bz2 rneovim-1e71978cf032b4a8c3f27e11e6fbafc4fd2ab8db.zip |
events: VimSuspend, VimResume #8280
closes #3648
ref #5959
Diffstat (limited to 'runtime/doc/autocmd.txt')
-rw-r--r-- | runtime/doc/autocmd.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 9a04bf2824..06a016eddb 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -272,10 +272,11 @@ Name triggered by ~ |GUIEnter| after starting the GUI successfully |GUIFailed| after starting the GUI failed |TermResponse| after the terminal response to |t_RV| is received - |QuitPre| when using `:quit`, before deciding whether to quit -|VimLeavePre| before exiting Vim, before writing the shada file -|VimLeave| before exiting Vim, after writing the shada file +|VimLeavePre| before exiting Nvim, before writing the shada file +|VimLeave| before exiting Nvim, after writing the shada file +|VimResume| after Nvim is resumed +|VimSuspend| before Nvim is suspended Various |DirChanged| after the |current-directory| was changed @@ -1009,6 +1010,10 @@ VimLeavePre Before exiting Vim, just before writing the VimResized After the Vim window was resized, thus 'lines' and/or 'columns' changed. Not when starting up though. + *VimResume* +VimResume After Nvim resumes from |suspend| state. + *VimSuspend* +VimSuspend Before Nvim enters |suspend| state. *WinEnter* WinEnter After entering another window. Not done for the first window, when Vim has just started. |