diff options
| author | Bram Moolenaar <Bram@vim.org> | 2014-10-09 10:44:37 +0200 |
|---|---|---|
| committer | Bram Moolenaar <Bram@vim.org> | 2014-10-09 10:44:37 +0200 |
| commit | 56095e1cebcdf7a4607c147e485f8a2e12578848 (patch) | |
| tree | 4cafc1a8a5396d1d874ad8a40e140c6301aa48bc /src/window.c | |
| parent | 21d89b610fe2d952a500eaf34cda03c276ef6db6 (diff) | |
| download | vim-git-56095e1cebcdf7a4607c147e485f8a2e12578848.tar.gz | |
updated for version 7.4.466v7.4.466
Problem: CTRL-W } does not open preview window. (Erik Falor)
Solution: Don't set g_do_tagpreview for CTRL-W }.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 5a2d8a42b..fda9199b2 100644 --- 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 ]" |
