diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-07-19 23:13:03 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-07-19 23:13:03 +0200 |
commit | 12c11d553053f5a9eae9eb3c518279b12fa928c2 (patch) | |
tree | 9516b5c3300a1799e1a5657457dedd7e8d526749 /src/vim.h | |
parent | 4f0383bc3fe5af0229fb66b53fe94329af783eff (diff) | |
download | vim-git-12c11d553053f5a9eae9eb3c518279b12fa928c2.tar.gz |
patch 7.4.2077v7.4.2077
Problem: Cannot update 'tabline' when a tab was closed.
Solution: Add the TabClosed autocmd event. (partly by Felipe Morales)
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 */ |