vim-patch:7.4.466

Problem:    CTRL-W } does not open preview window. (Erik Falor)
Solution:   Don't set g_do_tagpreview for CTRL-W }.

https://code.google.com/p/vim/source/detail?r=v7-4-466
This commit is contained in:
Florian Walch 2015-01-08 08:26:00 +01:00
parent 641f79099f
commit a240e3d686
2 changed files with 5 additions and 1 deletions

View File

@ -272,6 +272,7 @@ static int included_patches[] = {
//469 NA
468,
467,
466,
//465 NA
//464 NA
463,

View File

@ -371,7 +371,10 @@ newwindow:
postponed_split = Prenum;
else
postponed_split = -1;
g_do_tagpreview = 0;
if (nchar != '}') {
g_do_tagpreview = 0;
}
// Execute the command right here, required when
// "wincmd ]" was used in a function.