nvim-tree-preview.lua
nvim-tree-preview.lua copied to clipboard
[Feature] keep floating nvim-tree when toggle focus
Basically, when I focus into preview window, my floating nvim-tree disappears
require 'nvim-tree'.setup{
on_attach = my_on_attach,
view = {
float = {
enable = true,
},
},
}
Thanks for reporting. I'll accept a PR for this but don't have time to work on it right now myself.
Maybe this Nvim-tree option is what you want @egoarka:
require 'nvim-tree'.setup{
on_attach = my_on_attach,
view = {
float = {
enable = true,
quit_on_focus_loss = false, -- Add this line
},
},
}
Closing this for now. If anyone still runs into this please comment here, happy to re-open it.