diff options
author | rover <pathfinder2013@126.com> | 2017-01-08 23:12:52 +0800 |
---|---|---|
committer | rover <pathfinder2013@126.com> | 2017-01-08 23:16:39 +0800 |
commit | f5d06c52a24b512fe555a548360a8393e70007a3 (patch) | |
tree | c34441364fdf2da67a4b01ec5c54fa7f139e8b42 /runtime | |
parent | c2344f3d31fe6a006027dbf88873ee0916b73028 (diff) | |
download | rneovim-f5d06c52a24b512fe555a548360a8393e70007a3.tar.gz rneovim-f5d06c52a24b512fe555a548360a8393e70007a3.tar.bz2 rneovim-f5d06c52a24b512fe555a548360a8393e70007a3.zip |
vim-patch:7.4.2077
Problem: Cannot update 'tabline' when a tab was closed.
Solution: Add the TabClosed autocmd event. (partly by Felipe Morales)
https://github.com/vim/vim/commit/12c11d553053f5a9eae9eb3c518279b12fa928c2
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/autocmd.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 1edb377013..b6984c21eb 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -990,6 +990,11 @@ WinLeave Before leaving a window. If the window to be WinLeave autocommands (but not for ":new"). Not used for ":qa" or ":q" when exiting Vim. + *WinNew* +WinNew When a new window was created. Not done for + the fist window, when Vim has just started. + Before a WinEnter event. + ============================================================================== 6. Patterns *autocmd-patterns* *{pat}* |