You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The buffer list gets out of sync if you move a buffer to a new tab using <c-w>T.
To recreate:
Split a tab and load a file into each split, so that buffers contain 2 different files.
Eg open file a, :e a.txt -> split, <c-w>v -> open file b, :e b.txt
Move one of the files to a new tab with <c-w>T
Go back to the original tab
:buffers
When you do the 3 steps above, you'll see that both files are still in scope on the first tab. The first file should have been moved to the second tab. Furthermore, trying to delete the buffer from the old tab using bDel removes it both from the original tab but also from the new one.
The text was updated successfully, but these errors were encountered:
The buffer list gets out of sync if you move a buffer to a new tab using
<c-w>T
.To recreate:
:e a.txt
-> split,<c-w>v
-> open file b,:e b.txt
<c-w>T
:buffers
When you do the 3 steps above, you'll see that both files are still in scope on the first tab. The first file should have been moved to the second tab. Furthermore, trying to delete the buffer from the old tab using
bDel
removes it both from the original tab but also from the new one.The text was updated successfully, but these errors were encountered: