is there an vim event triggered by terminal window resizing?
If you resize the terminal window you're开发者_Go百科 running vim (or macvim) in, is there any vimscript event that gets triggered and which you can attach autocommands to?
The event you are looking for is VimResized
. See :help VimResized
for more information.
For a complete list of autocmd events and details about them individually, see :help autocmd-events
.
精彩评论