vim-patch:8.2.2123: after using a complete popup the buffer is listed

Problem:    After using a complete popup the buffer is listed. (Boris
            Staletic)
Solution:   Make the buffer unlisted.
d356fc65d2
This commit is contained in:
Sean Dewar 2020-12-09 19:25:55 +00:00
parent b8a0304bb9
commit 9900e68ae3

View File

@ -742,6 +742,7 @@ static int pum_set_selected(int n, int repeat)
// Edit a new, empty buffer. Set options for a "wipeout" // Edit a new, empty buffer. Set options for a "wipeout"
// buffer. // buffer.
set_option_value("swf", 0L, NULL, OPT_LOCAL); set_option_value("swf", 0L, NULL, OPT_LOCAL);
set_option_value("bl", 0L, NULL, OPT_LOCAL);
set_option_value("bt", 0L, "nofile", OPT_LOCAL); set_option_value("bt", 0L, "nofile", OPT_LOCAL);
set_option_value("bh", 0L, "wipe", OPT_LOCAL); set_option_value("bh", 0L, "wipe", OPT_LOCAL);
set_option_value("diff", 0L, NULL, OPT_LOCAL); set_option_value("diff", 0L, NULL, OPT_LOCAL);