diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-23 21:37:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-23 21:37:08 -0500 |
commit | 7afd4526f2ee018ef611f91bfe1b0cb8ed2fc4c6 (patch) | |
tree | ac13e40f4dea01690c95d3bf2a01b9f9d7795279 /src/nvim/buffer.c | |
parent | 6eecd4230d30014e24d3a9f62b4d6b89d74d6b1a (diff) | |
parent | e193dbd7e88b6eb5dd4effc4c604d62964e1883d (diff) | |
download | rneovim-7afd4526f2ee018ef611f91bfe1b0cb8ed2fc4c6.tar.gz rneovim-7afd4526f2ee018ef611f91bfe1b0cb8ed2fc4c6.tar.bz2 rneovim-7afd4526f2ee018ef611f91bfe1b0cb8ed2fc4c6.zip |
Merge pull request #13591 from janlazo/vim-8.1.1805
vim-patch:8.1.1805,8.2.{116,1025}
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index a5e8097133..f40ebaad90 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -4706,7 +4706,6 @@ do_arg_all( int keep_tabs // keep current tabs, for ":tab drop file" ) { - int i; char_u *opened; // Array of weight for which args are open: // 0: not opened // 1: opened in other tab @@ -4715,6 +4714,7 @@ do_arg_all( int opened_len; // length of opened[] int use_firstwin = false; // use first window for arglist + bool tab_drop_empty_window = false; int split_ret = OK; bool p_ea_save; alist_T *alist; // argument list to be used @@ -4762,6 +4762,7 @@ do_arg_all( win_T *wpnext = NULL; tpnext = curtab->tp_next; for (win_T *wp = firstwin; wp != NULL; wp = wpnext) { + int i; wpnext = wp->w_next; buf = wp->w_buffer; if (buf->b_ffname == NULL @@ -4867,14 +4868,15 @@ do_arg_all( last_curwin = curwin; last_curtab = curtab; win_enter(lastwin, false); - // ":drop all" should re-use an empty window to avoid "--remote-tab" + // ":tab drop file" should re-use an empty window to avoid "--remote-tab" // leaving an empty tab page when executed locally. if (keep_tabs && BUFEMPTY() && curbuf->b_nwindows == 1 && curbuf->b_ffname == NULL && !curbuf->b_changed) { use_firstwin = true; + tab_drop_empty_window = true; } - for (i = 0; i < count && i < opened_len && !got_int; i++) { + for (int i = 0; i < count && !got_int; i++) { if (alist == &global_alist && i == global_alist.al_ga.ga_len - 1) { arg_had_last = true; } @@ -4894,6 +4896,10 @@ do_arg_all( } } } else if (split_ret == OK) { + // trigger events for tab drop + if (tab_drop_empty_window && i == count - 1) { + autocmd_no_enter--; + } if (!use_firstwin) { // split current window p_ea_save = p_ea; p_ea = true; // use space from all windows @@ -4919,6 +4925,9 @@ do_arg_all( || bufIsChanged(curwin->w_buffer)) ? ECMD_HIDE : 0) + ECMD_OLDBUF, curwin); + if (tab_drop_empty_window && i == count - 1) { + autocmd_no_enter++; + } if (use_firstwin) { autocmd_no_leave++; } |