diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-13 15:41:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-13 15:41:22 +0800 |
commit | 422af9c5c5cd3b1368644b0028a2919e2c3096c0 (patch) | |
tree | 33fe9904ff839c97d88c61daefbdc82354d48b25 /src | |
parent | 91872d77126f3e04a2addb24deb0f88c529a33f4 (diff) | |
download | rneovim-422af9c5c5cd3b1368644b0028a2919e2c3096c0.tar.gz rneovim-422af9c5c5cd3b1368644b0028a2919e2c3096c0.tar.bz2 rneovim-422af9c5c5cd3b1368644b0028a2919e2c3096c0.zip |
vim-patch:8.1.1521: when a popup window is closed the buffer remains (#26024)
Problem: When a popup window is closed the buffer remains.
Solution: Wipe out the buffer.
https://github.com/vim/vim/commit/7c7f01e2b260c75d9996ca9ab621119eafe13a63
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/window.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/nvim/window.c b/src/nvim/window.c index 42c6ff7c60..a49dcd95bc 100644 --- a/src/nvim/window.c +++ b/src/nvim/window.c @@ -2756,10 +2756,11 @@ static bool close_last_window_tabpage(win_T *win, bool free_buf, tabpage_T *prev return true; } -/// Close the buffer of "win" and unload it if "free_buf" is true. +/// Close the buffer of "win" and unload it if "action" is DOBUF_UNLOAD. +/// "action" can also be zero (do nothing). /// "abort_if_last" is passed to close_buffer(): abort closing if all other /// windows are closed. -static void win_close_buffer(win_T *win, bool free_buf, bool abort_if_last) +static void win_close_buffer(win_T *win, int action, bool abort_if_last) { // Free independent synblock before the buffer is freed. if (win->w_buffer != NULL) { @@ -2778,7 +2779,7 @@ static void win_close_buffer(win_T *win, bool free_buf, bool abort_if_last) bufref_T bufref; set_bufref(&bufref, curbuf); win->w_closing = true; - close_buffer(win, win->w_buffer, free_buf ? DOBUF_UNLOAD : 0, abort_if_last, true); + close_buffer(win, win->w_buffer, action, abort_if_last, true); if (win_valid_any_tab(win)) { win->w_closing = false; } @@ -2908,7 +2909,7 @@ int win_close(win_T *win, bool free_buf, bool force) return OK; } - win_close_buffer(win, free_buf, true); + win_close_buffer(win, free_buf ? DOBUF_UNLOAD : 0, true); if (only_one_window() && win_valid(win) && win->w_buffer == NULL && (last_window(win) || curtab != prev_curtab |