diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-18 15:25:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-18 15:25:17 +0200 |
commit | 576a4a6ff14da876d7c4418e5f27e926fcfa8d2a (patch) | |
tree | 6c34c1eaed6f1b46c573bb0fe3ce8d375e678e29 /src/search.c | |
parent | 93cf85f9ef02931de3f8c8e536a137da0b48b7dc (diff) | |
download | vim-git-576a4a6ff14da876d7c4418e5f27e926fcfa8d2a.tar.gz |
patch 8.1.1880: cannot show extra info for completion in a popup windowv8.1.1880
Problem: Cannot show extra info for completion in a popup window.
Solution: Add the "popup" entry in 'completeopt'.
Diffstat (limited to 'src/search.c')
-rw-r--r-- | src/search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search.c b/src/search.c index da64e6568..46273e11e 100644 --- a/src/search.c +++ b/src/search.c @@ -5578,7 +5578,7 @@ search_line: if (g_do_tagpreview != 0) { curwin_save = curwin; - prepare_tagpreview(TRUE); + prepare_tagpreview(TRUE, TRUE, FALSE); } #endif if (action == ACTION_SPLIT) |