nanozuki / tabby.nvim

A declarative, highly configurable, and neovim style tabline plugin. Use your nvim tabs as a workspace multiplexer!
MIT License
563 stars 21 forks source link

How to show all buffers in tab? #123

Closed DuyDuong437 closed 10 months ago

DuyDuong437 commented 10 months ago

Currently tabby only shows maximum of 2 buffers in a tab.

How to show all buffers available in tabs?

nanozuki commented 10 months ago

In preset config, tabby shows all windows in a tab. It doesn't have a limit to show a maximum of 2 windows. Buffers are not "belong to" tab, so we can't find all the buffers in the tab. Let me try to explain it:

Maybe we open 2 tabs and 5 windows:

Tab 1: Window A: view.py Window B: service.py
Tab 2: Window A: view.py Window B: sql.py Window C: README.md

And the buffers are:

buffer 1: view.py
buffer 2: service.py
buffer 3: sql.py
buffer 4: README.md
buffer 5: app.py (not shown)
nanozuki commented 10 months ago

I closed this issue. Further discussion is welcome