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
There's a missing bufferline#update() in plugin/bufferline.vim. Unfortunately there's no event for tabs being moved— I did find neovim/neovim#6916 though.
I never saw this before because I use nvim-tabmode to manage my tabs, rather than manual commands.
nvim-tabmode is based on nvim-libmodal, which performs a :redraw on mode exit. As such, whenever I moved a tab, the screen was redrawn. Your screen won't redraw until we tell it to, since you aren't using that.
Description
When moving the current tabpage with
:tabmove
the tabpage indicator does not update.To Reproduce
init.vim:
Steps to reproduce the behavior:
:tabedit
(create new tabpage, indicator shows 2/2):tabmove 0
(make this tabpage the first one):tabmove 0
actually moved the tab page dogtgT
. Now the tabpage indicator shows 1/2 as expected.The text was updated successfully, but these errors were encountered: