# HG changeset patch # User Bram Moolenaar # Date 1607534103 -3600 # Node ID 713912dd96cd1273e5089fe66a311cdb63638585 # Parent a40d2987b2306ea31fb309bd29534a7a1c8cf955 patch 8.2.2123: after using a complete popup the buffer is listed Commit: https://github.com/vim/vim/commit/d356fc65d273959efa9b05bfa0f07ce1c9ff85a4 Author: Bram Moolenaar Date: Wed Dec 9 18:13:44 2020 +0100 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. diff --git a/src/popupmenu.c b/src/popupmenu.c --- a/src/popupmenu.c +++ b/src/popupmenu.c @@ -858,6 +858,7 @@ pum_set_selected(int n, int repeat UNUSE // Edit a new, empty buffer. Set options for a "wipeout" // buffer. set_option_value((char_u *)"swf", 0L, NULL, OPT_LOCAL); + set_option_value((char_u *)"bl", 0L, NULL, OPT_LOCAL); set_option_value((char_u *)"bt", 0L, (char_u *)"nofile", OPT_LOCAL); set_option_value((char_u *)"bh", 0L, diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -3215,6 +3215,9 @@ func Get_popupmenu_lines() call setline(1, 'text text text text text text text ') func ChangeColor() let id = popup_findinfo() + if buflisted(winbufnr(id)) + call setline(1, 'buffer is listed') + endif eval id->popup_setoptions(#{highlight: 'InfoPopup'}) endfunc diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2123, +/**/ 2122, /**/ 2121,