mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
Move applying of TabClosed to win_close_othertab
This commit is contained in:
parent
2c436b3362
commit
e84e1b68c1
@ -6230,7 +6230,6 @@ void tabpage_close_other(tabpage_T *tp, int forceit)
|
||||
if (!valid_tabpage(tp) || tp->tp_firstwin == wp)
|
||||
break;
|
||||
}
|
||||
apply_autocmds(EVENT_TABCLOSED, prev_idx, prev_idx, FALSE, curbuf);
|
||||
|
||||
redraw_tabline = TRUE;
|
||||
if (h != tabline_height())
|
||||
|
@ -1724,7 +1724,6 @@ void close_windows(buf_T *buf, int keep_curwin)
|
||||
{
|
||||
tabpage_T *tp, *nexttp;
|
||||
int h = tabline_height();
|
||||
int count = tabpage_index(NULL);
|
||||
|
||||
++RedrawingDisabled;
|
||||
|
||||
@ -1741,11 +1740,6 @@ void close_windows(buf_T *buf, int keep_curwin)
|
||||
} else
|
||||
wp = wp->w_next;
|
||||
}
|
||||
if (count != tabpage_index(NULL)) {
|
||||
char_u prev_idx[NUMBUFLEN];
|
||||
sprintf((char *)prev_idx, "%i", tabpage_index(curtab));
|
||||
apply_autocmds(EVENT_TABCLOSED, prev_idx, prev_idx, false, curbuf);
|
||||
}
|
||||
|
||||
/* Also check windows in other tab pages. */
|
||||
for (tp = first_tabpage; tp != NULL; tp = nexttp) {
|
||||
@ -1762,11 +1756,6 @@ void close_windows(buf_T *buf, int keep_curwin)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (count != tabpage_index(NULL)) {
|
||||
char_u prev_idx[NUMBUFLEN];
|
||||
sprintf((char *)prev_idx, "%i", tabpage_index(tp));
|
||||
apply_autocmds(EVENT_TABCLOSED, prev_idx, prev_idx, false, curbuf);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1854,7 +1843,6 @@ static bool close_last_window_tabpage(win_T *win, bool free_buf,
|
||||
|
||||
// Since goto_tabpage_tp above did not trigger *Enter autocommands, do
|
||||
// that now.
|
||||
apply_autocmds(EVENT_TABCLOSED, prev_idx, prev_idx, false, curbuf);
|
||||
apply_autocmds(EVENT_WINENTER, NULL, NULL, false, curbuf);
|
||||
apply_autocmds(EVENT_TABENTER, NULL, NULL, false, curbuf);
|
||||
if (old_curbuf != curbuf) {
|
||||
@ -2114,6 +2102,10 @@ void win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
|
||||
|
||||
/* When closing the last window in a tab page remove the tab page. */
|
||||
if (tp->tp_firstwin == tp->tp_lastwin) {
|
||||
// save index for tabclosed event
|
||||
char_u prev_idx[NUMBUFLEN];
|
||||
sprintf((char *)prev_idx, "%i", tabpage_index(tp));
|
||||
|
||||
if (tp == first_tabpage)
|
||||
first_tabpage = tp->tp_next;
|
||||
else {
|
||||
@ -2127,6 +2119,8 @@ void win_close_othertab(win_T *win, int free_buf, tabpage_T *tp)
|
||||
ptp->tp_next = tp->tp_next;
|
||||
}
|
||||
free_tp = TRUE;
|
||||
|
||||
apply_autocmds(EVENT_TABCLOSED, prev_idx, prev_idx, false, win->w_buffer);
|
||||
}
|
||||
|
||||
/* Free the memory used for the window. */
|
||||
|
@ -2,10 +2,10 @@ local helpers = require('test.functional.helpers')(after_each)
|
||||
local clear, nvim, eq = helpers.clear, helpers.nvim, helpers.eq
|
||||
|
||||
describe('TabClosed', function()
|
||||
before_each(clear)
|
||||
describe('au TabClosed', function()
|
||||
describe('with * as <afile>', function()
|
||||
it('matches when closing any tab', function()
|
||||
clear()
|
||||
nvim('command', 'au! TabClosed * echom "tabclosed:".expand("<afile>").":".expand("<amatch>").":".tabpagenr()')
|
||||
repeat
|
||||
nvim('command', 'tabnew')
|
||||
@ -15,17 +15,51 @@ describe('TabClosed', function()
|
||||
eq("\ntabclosed:2:2:3", nvim('command_output', '2tabclose')) -- close tab 2, current tab is now 3
|
||||
eq("\ntabclosed:1:1:2\ntabclosed:1:1:1", nvim('command_output', 'tabonly')) -- close tabs 1 and 2
|
||||
end)
|
||||
|
||||
it('is triggered when closing a window via bdelete from another tab', function()
|
||||
nvim('command', 'au! TabClosed * echom "tabclosed:".expand("<afile>").":".expand("<amatch>").":".tabpagenr()')
|
||||
nvim('command', '1tabedit Xtestfile')
|
||||
nvim('command', '1tabedit Xtestfile')
|
||||
nvim('command', 'normal! 1gt')
|
||||
eq({1, 3}, nvim('eval', '[tabpagenr(), tabpagenr("$")]'))
|
||||
eq("\ntabclosed:2:2:1\ntabclosed:2:2:1", nvim('command_output', 'bdelete Xtestfile'))
|
||||
eq({1, 1}, nvim('eval', '[tabpagenr(), tabpagenr("$")]'))
|
||||
end)
|
||||
|
||||
it('is triggered when closing a window via bdelete from current tab', function()
|
||||
nvim('command', 'au! TabClosed * echom "tabclosed:".expand("<afile>").":".expand("<amatch>").":".tabpagenr()')
|
||||
nvim('command', 'file Xtestfile1')
|
||||
nvim('command', '1tabedit Xtestfile2')
|
||||
nvim('command', '1tabedit Xtestfile2')
|
||||
|
||||
-- Only one tab is closed, and the alternate file is used for the other.
|
||||
eq({2, 3}, nvim('eval', '[tabpagenr(), tabpagenr("$")]'))
|
||||
eq("\ntabclosed:2:2:2", nvim('command_output', 'bdelete Xtestfile2'))
|
||||
eq('Xtestfile1', nvim('eval', 'bufname("")'))
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('with NR as <afile>', function()
|
||||
it('matches when closing a tab whose index is NR', function()
|
||||
nvim('command', 'au! TabClosed * echom "tabclosed:".expand("<afile>").":".expand("<amatch>").":".tabpagenr()')
|
||||
nvim('command', 'au! TabClosed 2 echom "tabclosed:match"')
|
||||
repeat
|
||||
nvim('command', 'tabnew')
|
||||
until nvim('eval', 'tabpagenr()') == 5 -- current tab is now 5
|
||||
until nvim('eval', 'tabpagenr()') == 7 -- current tab is now 7
|
||||
-- sanity check, we shouldn't match on tabs with numbers other than 2
|
||||
eq("\ntabclosed:5:5:4", nvim('command_output', 'tabclose'))
|
||||
-- close tab page 2, current tab is now 3
|
||||
eq("\ntabclosed:2:2:3\ntabclosed:match", nvim('command_output', '2tabclose'))
|
||||
eq("\ntabclosed:7:7:6", nvim('command_output', 'tabclose'))
|
||||
-- close tab page 2, current tab is now 5
|
||||
eq("\ntabclosed:2:2:5\ntabclosed:match", nvim('command_output', '2tabclose'))
|
||||
end)
|
||||
end)
|
||||
|
||||
describe('with close', function()
|
||||
it('is triggered', function()
|
||||
nvim('command', 'au! TabClosed * echom "tabclosed:".expand("<afile>").":".expand("<amatch>").":".tabpagenr()')
|
||||
nvim('command', 'tabedit Xtestfile')
|
||||
eq({2, 2}, nvim('eval', '[tabpagenr(), tabpagenr("$")]'))
|
||||
eq("\ntabclosed:2:2:1", nvim('command_output', 'close'))
|
||||
eq({1, 1}, nvim('eval', '[tabpagenr(), tabpagenr("$")]'))
|
||||
end)
|
||||
end)
|
||||
end)
|
||||
|
Loading…
Reference in New Issue
Block a user