changeset 6264:521c49b6de9d v7.4.466

updated for version 7.4.466 Problem: CTRL-W } does not open preview window. (Erik Falor) Solution: Don't set g_do_tagpreview for CTRL-W }.
author Bram Moolenaar <bram@vim.org>
date Thu, 09 Oct 2014 10:44:37 +0200
parents cccfbf3fd5c0
children 123a83d5483a
files src/version.c src/window.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    466,
+/**/
     465,
 /**/
     464,
--- a/src/window.c
+++ b/src/window.c
@@ -485,7 +485,8 @@ newwindow:
 		else
 		    postponed_split = -1;
 #ifdef FEAT_QUICKFIX
-		g_do_tagpreview = 0;
+		if (nchar != '}')
+		    g_do_tagpreview = 0;
 #endif
 
 		/* Execute the command right here, required when "wincmd ]"