if (window_layout_locked(CMD_tabclose))
return;
+ trigger_tabclosedpre(curtab, TRUE);
+
// First close all the windows but the current one. If that worked then
// close the last window in this tab, that will close it.
if (!ONE_WINDOW)
int done = 0;
win_T *wp;
+ trigger_tabclosedpre(tp, TRUE);
+
// Limit to 1000 windows, autocommands may add a window while we close
// one. OK, so I'm paranoid...
while (++done < 1000)
char *check_colorcolumn(char_u *cc, win_T *wp);
int get_last_winid(void);
int win_locked(win_T *wp);
+void trigger_tabclosedpre(tabpage_T *tp, int directly);
/* vim: set ft=c : */
call ClearAutomcdAndCreateTabs()
au TabClosedPre * tabmove 0
tabclose
- call assert_equal('1Z2A3>B', GetTabs())
+ call assert_equal('1>Z2A3B', GetTabs())
call ClearAutomcdAndCreateTabs()
au TabClosedPre * tabmove 0
tabclose 1
au TabClosedPre * new X | new Y | new Z
call assert_fails('tabclose 1', 'E242')
+ " Test directly closing the tab page with ':tabclose'
+ au!
+ tabonly
+ bw!
+ e Z
+ au TabClosedPre * mksession!
+ tabnew A
+ sp
+ tabclose
+ source Session.vim
+ call assert_equal('1Z2>AA', GetTabs())
+
+ " Test directly closing the tab page with ':tabonly'
+ " Z is closed before A. Hence A overwrites the session.
+ au!
+ tabonly
+ bw!
+ e Z
+ au TabClosedPre * mksession!
+ tabnew A
+ tabnew B
+ tabonly
+ source Session.vim
+ call assert_equal('1>A2B', GetTabs())
+
" Clean up
+ call delete('Session.vim')
au!
only
tabonly
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1211,
/**/
1210,
/**/
recursive = FALSE;
}
- static void
-trigger_tabclosedpre(tabpage_T *tp)
+/*
+ * directly is TRUE if the window is closed by ':tabclose' or ':tabonly'.
+ * This allows saving the session before closing multi-window tab.
+ */
+ void
+trigger_tabclosedpre(tabpage_T *tp, int directly)
{
static int recursive = FALSE;
+ static int skip = FALSE;
tabpage_T *ptp = curtab;
// Quickly return when no TabClosedPre autocommands to be executed or
if (!has_tabclosedpre() || recursive)
return;
+ // Skip if the event have been triggered by ':tabclose' recently
+ if (skip)
+ {
+ skip = FALSE;
+ return;
+ }
+
if (valid_tabpage(tp))
+ {
goto_tabpage_tp(tp, FALSE, FALSE);
+ if (directly)
+ skip = TRUE;
+ }
recursive = TRUE;
window_layout_lock();
apply_autocmds(EVENT_TABCLOSEDPRE, NULL, NULL, FALSE, NULL);
if (tp->tp_firstwin == tp->tp_lastwin)
{
- trigger_tabclosedpre(tp);
+ trigger_tabclosedpre(tp, FALSE);
// autocmd may have freed the window already.
if (!win_valid_any_tab(win))
return;