mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.2-162
This commit is contained in:
@@ -2346,7 +2346,13 @@ ex_copen(eap)
|
|||||||
set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix",
|
set_option_value((char_u *)"bt", 0L, (char_u *)"quickfix",
|
||||||
OPT_LOCAL);
|
OPT_LOCAL);
|
||||||
set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL);
|
set_option_value((char_u *)"bh", 0L, (char_u *)"wipe", OPT_LOCAL);
|
||||||
set_option_value((char_u *)"diff", 0L, NULL, OPT_LOCAL);
|
#ifdef FEAT_DIFF
|
||||||
|
curwin->w_p_diff = FALSE;
|
||||||
|
#endif
|
||||||
|
#ifdef FEAT_FOLDING
|
||||||
|
set_option_value((char_u *)"fdm", 0L, (char_u *)"manual",
|
||||||
|
OPT_LOCAL);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Only set the height when still in the same tab page and there is no
|
/* Only set the height when still in the same tab page and there is no
|
||||||
@@ -2607,10 +2613,12 @@ qf_fill_buffer(qi)
|
|||||||
curbuf->b_p_ma = FALSE;
|
curbuf->b_p_ma = FALSE;
|
||||||
|
|
||||||
#ifdef FEAT_AUTOCMD
|
#ifdef FEAT_AUTOCMD
|
||||||
|
keep_filetype = TRUE; /* don't detect 'filetype' */
|
||||||
apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
|
apply_autocmds(EVENT_BUFREADPOST, (char_u *)"quickfix", NULL,
|
||||||
FALSE, curbuf);
|
FALSE, curbuf);
|
||||||
apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
|
apply_autocmds(EVENT_BUFWINENTER, (char_u *)"quickfix", NULL,
|
||||||
FALSE, curbuf);
|
FALSE, curbuf);
|
||||||
|
keep_filetype = FALSE;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* make sure it will be redrawn */
|
/* make sure it will be redrawn */
|
||||||
|
@@ -676,6 +676,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 */
|
||||||
|
/**/
|
||||||
|
162,
|
||||||
/**/
|
/**/
|
||||||
161,
|
161,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user