nvim-tree-preview.lua
nvim-tree-preview.lua copied to clipboard
How to enable scroll with mouse when hovering preview ?
Hi ! Thank you for this nice plugin !
In your example, i see that you show following mappings :
vim.keymap.set('n', '<C-f>', function() return preview.scroll(4) end, opts 'Scroll Down')
vim.keymap.set('n', '<C-b>', function() return preview.scroll(-4) end, opts 'Scroll Up')
is it technically possible to achieve the same with my mouse ? Like, for example, Telescope grep preview.
Thanks for your help, Regards