1
0
forked from aniani/vim

patch 7.4.2077

Problem:    Cannot update 'tabline' when a tab was closed.
Solution:   Add the TabClosed autocmd event. (partly by Felipe Morales)
This commit is contained in:
Bram Moolenaar
2016-07-19 23:13:03 +02:00
parent 4f0383bc3f
commit 12c11d5530
6 changed files with 36 additions and 6 deletions

View File

@@ -1331,6 +1331,7 @@ enum auto_event
EVENT_TABENTER, /* after entering a tab page */
EVENT_TABLEAVE, /* before leaving a tab page */
EVENT_TABNEW, /* when entering a new tab page */
EVENT_TABCLOSED, /* after closing a tab page */
EVENT_SHELLCMDPOST, /* after ":!cmd" */
EVENT_SHELLFILTERPOST, /* after ":1,2!cmd", ":w !cmd", ":r !cmd". */
EVENT_TEXTCHANGED, /* text was modified */