1
0
forked from aniani/vim

updated for version 7.3.926

Problem:    Autocommands are triggered by setwinvar() et al. Missing BufEnter
            on :tabclose. Duplicate WinEnter on :tabclose. Wrong order of
            events for :tablose and :tabnew.
Solution:   Fix these autocommand events. (Zyx)
This commit is contained in:
Bram Moolenaar
2013-05-06 04:50:35 +02:00
parent 84a05acc8c
commit 49e649fc2e
10 changed files with 204 additions and 56 deletions

View File

@@ -5320,8 +5320,6 @@ settabvar({tabnr}, {varname}, {val}) *settabvar()*
|t:var| |t:var|
Note that the variable name without "t:" must be used. Note that the variable name without "t:" must be used.
Tabs are numbered starting with one. Tabs are numbered starting with one.
Vim briefly goes to the tab page {tabnr}, this may trigger
TabLeave and TabEnter autocommands.
This function is not available in the |sandbox|. This function is not available in the |sandbox|.
settabwinvar({tabnr}, {winnr}, {varname}, {val}) *settabwinvar()* settabwinvar({tabnr}, {winnr}, {varname}, {val}) *settabwinvar()*
@@ -5334,8 +5332,6 @@ settabwinvar({tabnr}, {winnr}, {varname}, {val}) *settabwinvar()*
doesn't work for a global or local buffer variable. doesn't work for a global or local buffer variable.
For a local buffer option the global value is unchanged. For a local buffer option the global value is unchanged.
Note that the variable name without "w:" must be used. Note that the variable name without "w:" must be used.
Vim briefly goes to the tab page {tabnr}, this may trigger
TabLeave and TabEnter autocommands.
Examples: > Examples: >
:call settabwinvar(1, 1, "&list", 0) :call settabwinvar(1, 1, "&list", 0)
:call settabwinvar(3, 2, "myvar", "foobar") :call settabwinvar(3, 2, "myvar", "foobar")

View File

@@ -4551,7 +4551,7 @@ do_arg_all(count, forceit, keep_tabs)
* When the ":tab" modifier was used do this for all tab pages. * When the ":tab" modifier was used do this for all tab pages.
*/ */
if (had_tab > 0) if (had_tab > 0)
goto_tabpage_tp(first_tabpage, TRUE); goto_tabpage_tp(first_tabpage, TRUE, TRUE);
for (;;) for (;;)
{ {
tpnext = curtab->tp_next; tpnext = curtab->tp_next;
@@ -4663,7 +4663,7 @@ do_arg_all(count, forceit, keep_tabs)
if (!valid_tabpage(tpnext)) if (!valid_tabpage(tpnext))
tpnext = first_tabpage; /* start all over...*/ tpnext = first_tabpage; /* start all over...*/
# endif # endif
goto_tabpage_tp(tpnext, TRUE); goto_tabpage_tp(tpnext, TRUE, TRUE);
} }
/* /*
@@ -4767,13 +4767,13 @@ do_arg_all(count, forceit, keep_tabs)
if (last_curtab != new_curtab) if (last_curtab != new_curtab)
{ {
if (valid_tabpage(last_curtab)) if (valid_tabpage(last_curtab))
goto_tabpage_tp(last_curtab, TRUE); goto_tabpage_tp(last_curtab, TRUE, TRUE);
if (win_valid(last_curwin)) if (win_valid(last_curwin))
win_enter(last_curwin, FALSE); win_enter(last_curwin, FALSE);
} }
/* to window with first arg */ /* to window with first arg */
if (valid_tabpage(new_curtab)) if (valid_tabpage(new_curtab))
goto_tabpage_tp(new_curtab, TRUE); goto_tabpage_tp(new_curtab, TRUE, TRUE);
if (win_valid(new_curwin)) if (win_valid(new_curwin))
win_enter(new_curwin, FALSE); win_enter(new_curwin, FALSE);
@@ -4825,7 +4825,7 @@ ex_buffer_all(eap)
*/ */
#ifdef FEAT_WINDOWS #ifdef FEAT_WINDOWS
if (had_tab > 0) if (had_tab > 0)
goto_tabpage_tp(first_tabpage, TRUE); goto_tabpage_tp(first_tabpage, TRUE, TRUE);
for (;;) for (;;)
{ {
#endif #endif
@@ -4865,7 +4865,7 @@ ex_buffer_all(eap)
/* Without the ":tab" modifier only do the current tab page. */ /* Without the ":tab" modifier only do the current tab page. */
if (had_tab == 0 || tpnext == NULL) if (had_tab == 0 || tpnext == NULL)
break; break;
goto_tabpage_tp(tpnext, TRUE); goto_tabpage_tp(tpnext, TRUE, TRUE);
} }
#endif #endif

View File

@@ -16604,7 +16604,7 @@ f_settabvar(argvars, rettv)
if (tp != NULL && varname != NULL && varp != NULL) if (tp != NULL && varname != NULL && varp != NULL)
{ {
save_curtab = curtab; save_curtab = curtab;
goto_tabpage_tp(tp, TRUE); goto_tabpage_tp(tp, FALSE, FALSE);
tabvarname = alloc((unsigned)STRLEN(varname) + 3); tabvarname = alloc((unsigned)STRLEN(varname) + 3);
if (tabvarname != NULL) if (tabvarname != NULL)
@@ -16617,7 +16617,7 @@ f_settabvar(argvars, rettv)
/* Restore current tabpage */ /* Restore current tabpage */
if (valid_tabpage(save_curtab)) if (valid_tabpage(save_curtab))
goto_tabpage_tp(save_curtab, TRUE); goto_tabpage_tp(save_curtab, FALSE, FALSE);
} }
} }
@@ -16654,7 +16654,7 @@ switch_win(save_curwin, save_curtab, win, tp)
/* set curwin to be our win, temporarily */ /* set curwin to be our win, temporarily */
*save_curwin = curwin; *save_curwin = curwin;
*save_curtab = curtab; *save_curtab = curtab;
goto_tabpage_tp(tp, TRUE); goto_tabpage_tp(tp, FALSE, FALSE);
if (!win_valid(win)) if (!win_valid(win))
return FAIL; return FAIL;
curwin = win; curwin = win;
@@ -16672,7 +16672,7 @@ restore_win(save_curwin, save_curtab)
/* Restore current tabpage and window, if still valid (autocommands can /* Restore current tabpage and window, if still valid (autocommands can
* make them invalid). */ * make them invalid). */
if (valid_tabpage(save_curtab)) if (valid_tabpage(save_curtab))
goto_tabpage_tp(save_curtab, TRUE); goto_tabpage_tp(save_curtab, FALSE, FALSE);
if (win_valid(save_curwin)) if (win_valid(save_curwin))
{ {
curwin = save_curwin; curwin = save_curwin;

View File

@@ -2482,7 +2482,7 @@ ex_listdo(eap)
/* go to window "tp" */ /* go to window "tp" */
if (!valid_tabpage(tp)) if (!valid_tabpage(tp))
break; break;
goto_tabpage_tp(tp, TRUE); goto_tabpage_tp(tp, TRUE, TRUE);
tp = tp->tp_next; tp = tp->tp_next;
} }
#endif #endif

View File

@@ -8934,7 +8934,7 @@ aucmd_restbuf(aco)
if (wp == aucmd_win) if (wp == aucmd_win)
{ {
if (tp != curtab) if (tp != curtab)
goto_tabpage_tp(tp, TRUE); goto_tabpage_tp(tp, TRUE, TRUE);
win_goto(aucmd_win); win_goto(aucmd_win);
goto win_found; goto win_found;
} }

View File

@@ -27,7 +27,7 @@ int valid_tabpage __ARGS((tabpage_T *tpc));
tabpage_T *find_tabpage __ARGS((int n)); tabpage_T *find_tabpage __ARGS((int n));
int tabpage_index __ARGS((tabpage_T *ftp)); int tabpage_index __ARGS((tabpage_T *ftp));
void goto_tabpage __ARGS((int n)); void goto_tabpage __ARGS((int n));
void goto_tabpage_tp __ARGS((tabpage_T *tp, int trigger_autocmds)); void goto_tabpage_tp __ARGS((tabpage_T *tp, int trigger_enter_autocmds, int trigger_leave_autocmds));
void goto_tabpage_win __ARGS((tabpage_T *tp, win_T *wp)); void goto_tabpage_win __ARGS((tabpage_T *tp, win_T *wp));
void tabpage_move __ARGS((int nr)); void tabpage_move __ARGS((int nr));
void win_goto __ARGS((win_T *wp)); void win_goto __ARGS((win_T *wp));

View File

@@ -120,6 +120,68 @@ i=tabpagenr() 
 
:tabmove +20 :tabmove +20
i=tabpagenr() i=tabpagenr()

:3tabmove
i=tabpagenr()

:7tabmove 5
i=tabpagenr()

:let a='No error caught.'
:try
:tabmove foo
:catch E474
:let a='E474 caught.'
:endtry
i=a

:"
:" Test autocommands
:tabonly!
:let g:r=[]
:command -nargs=1 -bar C :call add(g:r, '=== ' . <q-args> . ' ===')|<args>
:function Test()
let hasau=has('autocmd')
if hasau
autocmd TabEnter * :call add(g:r, 'TabEnter')
autocmd WinEnter * :call add(g:r, 'WinEnter')
autocmd BufEnter * :call add(g:r, 'BufEnter')
autocmd TabLeave * :call add(g:r, 'TabLeave')
autocmd WinLeave * :call add(g:r, 'WinLeave')
autocmd BufLeave * :call add(g:r, 'BufLeave')
endif
let t:a='a'
C tab split
if !hasau
let g:r+=['WinLeave', 'TabLeave', 'WinEnter', 'TabEnter']
endif
let t:a='b'
C tabnew
if !hasau
let g:r+=['WinLeave', 'TabLeave', 'WinEnter', 'TabEnter', 'BufLeave', 'BufEnter']
endif
let t:a='c'
call add(g:r, join(map(range(1, tabpagenr('$')), 'gettabvar(v:val, "a")')))
C call map(range(1, tabpagenr('$')), 'settabvar(v:val, "a", v:val*2)')
call add(g:r, join(map(range(1, tabpagenr('$')), 'gettabvar(v:val, "a")')))
let w:a='a'
C vsplit
if !hasau
let g:r+=['WinLeave', 'WinEnter']
endif
let w:a='a'
let tabn=tabpagenr()
let winr=range(1, winnr('$'))
C tabnext 1
if !hasau
let g:r+=['BufLeave', 'WinLeave', 'TabLeave', 'WinEnter', 'TabEnter', 'BufEnter']
endif
call add(g:r, join(map(copy(winr), 'gettabwinvar('.tabn.', v:val, "a")')))
C call map(copy(winr), 'settabwinvar('.tabn.', v:val, "a", v:val*2)')
call add(g:r, join(map(copy(winr), 'gettabwinvar('.tabn.', v:val, "a")')))
if hasau if hasau
augroup TabDestructive augroup TabDestructive
autocmd TabEnter * :C tabnext 2 | C tabclose 3 autocmd TabEnter * :C tabnext 2 | C tabclose 3

View File

@@ -18,3 +18,71 @@ tab drop 3: pass
4 4
6 6
E474 caught. E474 caught.
=== tab split ===
WinLeave
TabLeave
WinEnter
TabEnter
=== tabnew ===
WinLeave
TabLeave
WinEnter
TabEnter
BufLeave
BufEnter
a b c
=== call map(range(1, tabpagenr('$')), 'settabvar(v:val, ===
a b c
=== vsplit ===
WinLeave
WinEnter
=== tabnext 1 ===
BufLeave
WinLeave
TabLeave
WinEnter
TabEnter
BufEnter
a a
=== call map(copy(winr), 'settabwinvar('.tabn.', v:val, ===
a a
=== tabnext 3 ===
BufLeave
WinLeave
TabLeave
WinEnter
TabEnter
=== tabnext 2 ===
=== tabclose 3 ===
2/2
=== tabnew ===
WinLeave
TabLeave
WinEnter
TabEnter
BufLeave
BufEnter
=== tabnext 1 ===
BufLeave
WinLeave
TabLeave
WinEnter
TabEnter
BufEnter
=== tabnext 3 ===
BufLeave
WinLeave
TabLeave
WinEnter
TabEnter
=== tabnext 2 ===
BufLeave
WinLeave
TabLeave
WinEnter
TabEnter
=== tabnext 2 ===
=== tabclose 3 ===
BufEnter
=== tabclose 3 ===
2/2

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
926,
/**/ /**/
925, 925,
/**/ /**/

View File

@@ -44,11 +44,11 @@ static int win_alloc_firstwin __ARGS((win_T *oldwin));
static void new_frame __ARGS((win_T *wp)); static void new_frame __ARGS((win_T *wp));
#if defined(FEAT_WINDOWS) || defined(PROTO) #if defined(FEAT_WINDOWS) || defined(PROTO)
static tabpage_T *alloc_tabpage __ARGS((void)); static tabpage_T *alloc_tabpage __ARGS((void));
static int leave_tabpage __ARGS((buf_T *new_curbuf)); static int leave_tabpage __ARGS((buf_T *new_curbuf, int trigger_leave_autocmds));
static void enter_tabpage __ARGS((tabpage_T *tp, buf_T *old_curbuf, int trigger_autocmds)); static void enter_tabpage __ARGS((tabpage_T *tp, buf_T *old_curbuf, int trigger_enter_autocmds, int trigger_leave_autocmds));
static void frame_fix_height __ARGS((win_T *wp)); static void frame_fix_height __ARGS((win_T *wp));
static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin)); static int frame_minheight __ARGS((frame_T *topfrp, win_T *next_curwin));
static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin)); static void win_enter_ext __ARGS((win_T *wp, int undo_sync, int no_curwin, int trigger_enter_autocmds, int trigger_leave_autocmds));
static void win_free __ARGS((win_T *wp, tabpage_T *tp)); static void win_free __ARGS((win_T *wp, tabpage_T *tp));
static void frame_append __ARGS((frame_T *after, frame_T *frp)); static void frame_append __ARGS((frame_T *after, frame_T *frp));
static void frame_insert __ARGS((frame_T *before, frame_T *frp)); static void frame_insert __ARGS((frame_T *before, frame_T *frp));
@@ -353,11 +353,11 @@ newwindow:
&& valid_tabpage(oldtab)) && valid_tabpage(oldtab))
{ {
newtab = curtab; newtab = curtab;
goto_tabpage_tp(oldtab, TRUE); goto_tabpage_tp(oldtab, TRUE, TRUE);
if (curwin == wp) if (curwin == wp)
win_close(curwin, FALSE); win_close(curwin, FALSE);
if (valid_tabpage(newtab)) if (valid_tabpage(newtab))
goto_tabpage_tp(newtab, TRUE); goto_tabpage_tp(newtab, TRUE, TRUE);
} }
} }
break; break;
@@ -2124,6 +2124,8 @@ close_last_window_tabpage(win, free_buf, prev_curtab)
{ {
if (firstwin == lastwin) if (firstwin == lastwin)
{ {
buf_T *old_curbuf = curbuf;
/* /*
* Closing the last window in a tab page. First go to another tab * Closing the last window in a tab page. First go to another tab
* page and then close the window and the tab page. This avoids that * page and then close the window and the tab page. This avoids that
@@ -2132,7 +2134,7 @@ close_last_window_tabpage(win, free_buf, prev_curtab)
* Don't trigger autocommands yet, they may use wrong values, so do * Don't trigger autocommands yet, they may use wrong values, so do
* that below. * that below.
*/ */
goto_tabpage_tp(alt_tabpage(), FALSE); goto_tabpage_tp(alt_tabpage(), FALSE, TRUE);
redraw_tabline = TRUE; redraw_tabline = TRUE;
/* Safety check: Autocommands may have closed the window when jumping /* Safety check: Autocommands may have closed the window when jumping
@@ -2148,8 +2150,10 @@ close_last_window_tabpage(win, free_buf, prev_curtab)
/* Since goto_tabpage_tp above did not trigger *Enter autocommands, do /* Since goto_tabpage_tp above did not trigger *Enter autocommands, do
* that now. */ * that now. */
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
if (old_curbuf != curbuf)
apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
#endif #endif
return TRUE; return TRUE;
} }
@@ -2341,7 +2345,7 @@ win_close(win, free_buf)
win_comp_pos(); win_comp_pos();
if (close_curwin) if (close_curwin)
{ {
win_enter_ext(wp, FALSE, TRUE); win_enter_ext(wp, FALSE, TRUE, TRUE, TRUE);
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
if (other_buffer) if (other_buffer)
/* careful: after this wp and win may be invalid! */ /* careful: after this wp and win may be invalid! */
@@ -3529,7 +3533,7 @@ win_new_tabpage(after)
return FAIL; return FAIL;
/* Remember the current windows in this Tab page. */ /* Remember the current windows in this Tab page. */
if (leave_tabpage(curbuf) == FAIL) if (leave_tabpage(curbuf, TRUE) == FAIL)
{ {
vim_free(newtp); vim_free(newtp);
return FAIL; return FAIL;
@@ -3574,14 +3578,14 @@ win_new_tabpage(after)
redraw_all_later(CLEAR); redraw_all_later(CLEAR);
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
#endif #endif
return OK; return OK;
} }
/* Failed, get back the previous Tab page */ /* Failed, get back the previous Tab page */
enter_tabpage(curtab, curbuf, TRUE); enter_tabpage(curtab, curbuf, TRUE, TRUE);
return FAIL; return FAIL;
} }
@@ -3692,9 +3696,10 @@ tabpage_index(ftp)
* Careful: When OK is returned need to get a new tab page very very soon! * Careful: When OK is returned need to get a new tab page very very soon!
*/ */
static int static int
leave_tabpage(new_curbuf) leave_tabpage(new_curbuf, trigger_leave_autocmds)
buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf, buf_T *new_curbuf UNUSED; /* what is going to be the new curbuf,
NULL if unknown */ NULL if unknown */
int trigger_leave_autocmds UNUSED;
{ {
tabpage_T *tp = curtab; tabpage_T *tp = curtab;
@@ -3702,6 +3707,8 @@ leave_tabpage(new_curbuf)
reset_VIsual_and_resel(); /* stop Visual mode */ reset_VIsual_and_resel(); /* stop Visual mode */
#endif #endif
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
if (trigger_leave_autocmds)
{
if (new_curbuf != curbuf) if (new_curbuf != curbuf)
{ {
apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_BUFLEAVE, NULL, NULL, FALSE, curbuf);
@@ -3714,6 +3721,7 @@ leave_tabpage(new_curbuf)
apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_TABLEAVE, NULL, NULL, FALSE, curbuf);
if (curtab != tp) if (curtab != tp)
return FAIL; return FAIL;
}
#endif #endif
#if defined(FEAT_GUI) #if defined(FEAT_GUI)
/* Remove the scrollbars. They may be added back later. */ /* Remove the scrollbars. They may be added back later. */
@@ -3734,13 +3742,15 @@ leave_tabpage(new_curbuf)
/* /*
* Start using tab page "tp". * Start using tab page "tp".
* Only to be used after leave_tabpage() or freeing the current tab page. * Only to be used after leave_tabpage() or freeing the current tab page.
* Only trigger *Enter autocommands when trigger_autocmds is TRUE. * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
* Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
*/ */
static void static void
enter_tabpage(tp, old_curbuf, trigger_autocmds) enter_tabpage(tp, old_curbuf, trigger_enter_autocmds, trigger_leave_autocmds)
tabpage_T *tp; tabpage_T *tp;
buf_T *old_curbuf UNUSED; buf_T *old_curbuf UNUSED;
int trigger_autocmds UNUSED; int trigger_enter_autocmds UNUSED;
int trigger_leave_autocmds UNUSED;
{ {
int old_off = tp->tp_firstwin->w_winrow; int old_off = tp->tp_firstwin->w_winrow;
win_T *next_prevwin = tp->tp_prevwin; win_T *next_prevwin = tp->tp_prevwin;
@@ -3753,7 +3763,7 @@ enter_tabpage(tp, old_curbuf, trigger_autocmds)
/* We would like doing the TabEnter event first, but we don't have a /* We would like doing the TabEnter event first, but we don't have a
* valid current window yet, which may break some commands. * valid current window yet, which may break some commands.
* This triggers autocommands, thus may make "tp" invalid. */ * This triggers autocommands, thus may make "tp" invalid. */
win_enter_ext(tp->tp_curwin, FALSE, TRUE); win_enter_ext(tp->tp_curwin, FALSE, TRUE, trigger_enter_autocmds, trigger_leave_autocmds);
prevwin = next_prevwin; prevwin = next_prevwin;
last_status(FALSE); /* status line may appear or disappear */ last_status(FALSE); /* status line may appear or disappear */
@@ -3788,7 +3798,7 @@ enter_tabpage(tp, old_curbuf, trigger_autocmds)
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
/* Apply autocommands after updating the display, when 'rows' and /* Apply autocommands after updating the display, when 'rows' and
* 'columns' have been set correctly. */ * 'columns' have been set correctly. */
if (trigger_autocmds) if (trigger_enter_autocmds)
{ {
apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_TABENTER, NULL, NULL, FALSE, curbuf);
if (old_curbuf != curbuf) if (old_curbuf != curbuf)
@@ -3869,7 +3879,7 @@ goto_tabpage(n)
} }
} }
goto_tabpage_tp(tp, TRUE); goto_tabpage_tp(tp, TRUE, TRUE);
#ifdef FEAT_GUI_TABLINE #ifdef FEAT_GUI_TABLINE
if (gui_use_tabline()) if (gui_use_tabline())
@@ -3879,23 +3889,28 @@ goto_tabpage(n)
/* /*
* Go to tabpage "tp". * Go to tabpage "tp".
* Only trigger *Enter autocommands when trigger_autocmds is TRUE. * Only trigger *Enter autocommands when trigger_enter_autocmds is TRUE.
* Only trigger *Leave autocommands when trigger_leave_autocmds is TRUE.
* Note: doesn't update the GUI tab. * Note: doesn't update the GUI tab.
*/ */
void void
goto_tabpage_tp(tp, trigger_autocmds) goto_tabpage_tp(tp, trigger_enter_autocmds, trigger_leave_autocmds)
tabpage_T *tp; tabpage_T *tp;
int trigger_autocmds; int trigger_enter_autocmds;
int trigger_leave_autocmds;
{ {
/* Don't repeat a message in another tab page. */ /* Don't repeat a message in another tab page. */
set_keep_msg(NULL, 0); set_keep_msg(NULL, 0);
if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer) == OK) if (tp != curtab && leave_tabpage(tp->tp_curwin->w_buffer,
trigger_leave_autocmds) == OK)
{ {
if (valid_tabpage(tp)) if (valid_tabpage(tp))
enter_tabpage(tp, curbuf, trigger_autocmds); enter_tabpage(tp, curbuf, trigger_enter_autocmds,
trigger_leave_autocmds);
else else
enter_tabpage(curtab, curbuf, trigger_autocmds); enter_tabpage(curtab, curbuf, trigger_enter_autocmds,
trigger_leave_autocmds);
} }
} }
@@ -3908,7 +3923,7 @@ goto_tabpage_win(tp, wp)
tabpage_T *tp; tabpage_T *tp;
win_T *wp; win_T *wp;
{ {
goto_tabpage_tp(tp, TRUE); goto_tabpage_tp(tp, TRUE, TRUE);
if (curtab == tp && win_valid(wp)) if (curtab == tp && win_valid(wp))
{ {
win_enter(wp, TRUE); win_enter(wp, TRUE);
@@ -4168,7 +4183,7 @@ win_enter(wp, undo_sync)
win_T *wp; win_T *wp;
int undo_sync; int undo_sync;
{ {
win_enter_ext(wp, undo_sync, FALSE); win_enter_ext(wp, undo_sync, FALSE, TRUE, TRUE);
} }
/* /*
@@ -4177,10 +4192,12 @@ win_enter(wp, undo_sync)
* been closed and isn't valid. * been closed and isn't valid.
*/ */
static void static void
win_enter_ext(wp, undo_sync, curwin_invalid) win_enter_ext(wp, undo_sync, curwin_invalid, trigger_enter_autocmds, trigger_leave_autocmds)
win_T *wp; win_T *wp;
int undo_sync; int undo_sync;
int curwin_invalid; int curwin_invalid;
int trigger_enter_autocmds UNUSED;
int trigger_leave_autocmds UNUSED;
{ {
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
int other_buffer = FALSE; int other_buffer = FALSE;
@@ -4190,7 +4207,7 @@ win_enter_ext(wp, undo_sync, curwin_invalid)
return; return;
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
if (!curwin_invalid) if (!curwin_invalid && trigger_leave_autocmds)
{ {
/* /*
* Be careful: If autocommands delete the window, return now. * Be careful: If autocommands delete the window, return now.
@@ -4259,9 +4276,12 @@ win_enter_ext(wp, undo_sync, curwin_invalid)
} }
#ifdef FEAT_AUTOCMD #ifdef FEAT_AUTOCMD
if (trigger_enter_autocmds)
{
apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_WINENTER, NULL, NULL, FALSE, curbuf);
if (other_buffer) if (other_buffer)
apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf); apply_autocmds(EVENT_BUFENTER, NULL, NULL, FALSE, curbuf);
}
#endif #endif
#ifdef FEAT_TITLE #ifdef FEAT_TITLE