[WIP] allow using the winbar instead of statusbar as a window picker #1767
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
WIP
Hi. I'm using vimpostor/vim-tpipeline with
laststatus=0
. There is some kind of problem when nvim-tree.lua populates the different statusbars in each window, vim-tpipeline doesn't like it. I also use s1n7ax/nvim-window-picker to pick a window when opening a file from telescope.nvim. They added an option to use the winbar instead of the statusbar to select the window. Could we also do something similar in nvim-tree.lua? This PR is some hack I did to test the idea, by adapting (stealing) their code.PS. Ideally, we could abstract the
window_picker
interface to hook into an arbitrary window picker implementation and reuse the nvim-window-picker function (or another, like t9md/vim-choosewin)PS2. nvim-window-picker is inspired by nvim-tree.lua, so it comes full circle =)
Thanks!