nvim-tree.lua-float-preview
nvim-tree.lua-float-preview copied to clipboard
float preview for nvim-tree.lua
When using nvim-tree.lua-float-preview with nvim-tree in the split screen configuration (like in #14), I get this when closing nvim-tree ```lua Error executing Lua callback: ...e/nvim-modular/lazy/nvim-tree.lua/lua/nvim-tree/view.lua:223: Failed to switch to window...
Instead of wrapping every keymap, Couldn't you just use the event hooks? ```lua local api = require('nvim-tree.api') local floatpreview = require('float-preview') local float_close_wrap = floatpreview.close_wrap local Event = api.events.Event api.events.subscribe(Event.TreeClose,...
Hey, I followed the doc but in my case I still have the preview when using tab. part of my config: nvim-tree config: ```lua require('nvim-tree').setup { on_attach = function(bufnr) local...
Since my nvim-tree is a float window i didnt want to make a preview in the background which I fixed. I added a user command to toggle a floating window....
Preview has a delay of ~4s. Where could this be come from?