diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-12-16 12:41:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 12:41:05 +0100 |
commit | 5ed55ff14c8b7e346811cb6228bf63fb5106bae9 (patch) | |
tree | d27158d56da5810b942a3d561ae15b2711b2a7cd /src/nvim/window.c | |
parent | 7e7da962de404e3a0952bcc0adc6fbe53eda3cfb (diff) | |
parent | e38027ef69f75653ee953b16ebf4a8652a3fb748 (diff) | |
download | rneovim-5ed55ff14c8b7e346811cb6228bf63fb5106bae9.tar.gz rneovim-5ed55ff14c8b7e346811cb6228bf63fb5106bae9.tar.bz2 rneovim-5ed55ff14c8b7e346811cb6228bf63fb5106bae9.zip |
Merge pull request #24723 from glepnir/popup
feat(complete): completeopt support popup like vim
Diffstat (limited to 'src/nvim/window.c')
-rw-r--r-- | src/nvim/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 98c62d6f44..618a3f760e 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -4978,7 +4978,7 @@ void free_wininfo(wininfo_T *wip, buf_T *bp) /// Remove window 'wp' from the window list and free the structure. /// /// @param tp tab page "win" is in, NULL for current -static void win_free(win_T *wp, tabpage_T *tp) +void win_free(win_T *wp, tabpage_T *tp) { pmap_del(int)(&window_handles, wp->handle, NULL); clearFolding(wp); |