summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-07-19 23:13:03 +0200
committerBram Moolenaar <Bram@vim.org>2016-07-19 23:13:03 +0200
commit12c11d553053f5a9eae9eb3c518279b12fa928c2 (patch)
tree9516b5c3300a1799e1a5657457dedd7e8d526749 /src/vim.h
parent4f0383bc3fe5af0229fb66b53fe94329af783eff (diff)
downloadvim-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.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index d9a60dd6b..488f27084 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -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 */