diff options
author | Rom Grk <romgrk.cc@gmail.com> | 2021-04-17 17:33:59 -0400 |
---|---|---|
committer | Lewis Russell <lewis6991@gmail.com> | 2022-02-10 15:26:40 +0000 |
commit | 85ae04dbfd405343b10c400d40e95334a44cc978 (patch) | |
tree | fb88cdc7e9f6e51537440da389bcef4e6c0a3893 /src/nvim/tag.c | |
parent | a73360a09a54c186f2df6e167a8be1f1a1d8c62a (diff) | |
download | rneovim-85ae04dbfd405343b10c400d40e95334a44cc978.tar.gz rneovim-85ae04dbfd405343b10c400d40e95334a44cc978.tar.bz2 rneovim-85ae04dbfd405343b10c400d40e95334a44cc978.zip |
fix: close floating windows when calling win_close()
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r-- | src/nvim/tag.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c index 54d7e54fb4..32d72218c8 100644 --- a/src/nvim/tag.c +++ b/src/nvim/tag.c @@ -2960,7 +2960,7 @@ static int jumpto_tag(const char_u *lbuf_arg, int forceit, int keep_help) } else { RedrawingDisabled--; if (postponed_split) { // close the window - win_close(curwin, false); + win_close(curwin, false, false); postponed_split = 0; } } |