mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.3.1201
Problem: When a startup script creates a preview window, it probably becomes the current window. Solution: Make another window the current one. (Christian Brabandt)
This commit is contained in:
20
src/main.c
20
src/main.c
@@ -2816,7 +2816,25 @@ edit_buffers(parmp)
|
|||||||
# ifdef FEAT_AUTOCMD
|
# ifdef FEAT_AUTOCMD
|
||||||
--autocmd_no_enter;
|
--autocmd_no_enter;
|
||||||
# endif
|
# endif
|
||||||
win_enter(firstwin, FALSE); /* back to first window */
|
#if defined(FEAT_WINDOWS) && defined(FEAT_QUICKFIX)
|
||||||
|
/*
|
||||||
|
* Avoid making a preview window the current window.
|
||||||
|
*/
|
||||||
|
if (firstwin->w_p_pvw)
|
||||||
|
{
|
||||||
|
win_T *win;
|
||||||
|
|
||||||
|
for (win = firstwin; win != NULL; win = win->w_next)
|
||||||
|
if (!win->w_p_pvw)
|
||||||
|
{
|
||||||
|
firstwin = win;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
/* make the first window the current window */
|
||||||
|
win_enter(firstwin, FALSE);
|
||||||
|
|
||||||
# ifdef FEAT_AUTOCMD
|
# ifdef FEAT_AUTOCMD
|
||||||
--autocmd_no_leave;
|
--autocmd_no_leave;
|
||||||
# endif
|
# endif
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
1201,
|
||||||
/**/
|
/**/
|
||||||
1200,
|
1200,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user