Yura Markin
Yura Markin
I fixed it by remove [line](https://github.com/Flood-UI/flood/blob/bb553506a86225811a965563af99bf8e39cc433f/server/services/BaseService.js#L18)
I implemented float preview. Example (asciinema preview may broken, please open link) [](https://asciinema.org/a/590909) Code available [floatpreview.lua](https://github.com/JMarkin/mynvim/blob/master/lua/custom/floatpreview.lua),[nvimtree attach](https://github.com/JMarkin/mynvim/blob/d733abb2ec72654211dafb089f237df9c2745758/lua/plugins/nvimtree.lua#L5). Currently I don't know how to integrate with nvimtree code, but I try...
Hello all, I created [PR](https://github.com/nvim-tree/nvim-tree.lua/pull/2290) and this plugin https://github.com/JMarkin/nvim-tree.lua-float-preview. May be to need only plugin and `Recipe` ? What do you think?
@hopezh I think [readme](https://github.com/JMarkin/nvim-tree.lua-float-preview/blob/master/README.md) has example for lazy.nvim, for lazyvim I don't know
I have this problem too. more info if use bob's nvim > /usr/bin/time -v ~/.local/share/bob/nvim-bin/nvim -u NONE --headless -c ":q" > Command being timed: "/home/kron/.local/share/bob/nvim-bin/nvim -u NONE --headless -c :q"...
Hello @Cliffback , I don't know this feature of nvim-tree. May be you can use [nvim-tree.update_focused_file.exclude](https://github.com/nvim-tree/nvim-tree.lua/commit/e20966ae558524f8d6f93dc37f5d2a8605f893e2#diff-b5b2d1abcb86ead5a2319f7e065a7545b834a407cc9f420590d7acebb285fca9R1122) and check if it's float window like? ```lua function(args) return require("float-preview").is_float(args.buf) end ```
I didn't know about this nvim-tree feature. I have checked, it's good solution if you don't use window picker. I will try to use this solution soon, I predict we...
@haondt Hello, I tested with only events and it isn't work as want. But I think we can move wrapping commands to inside plugin. You can see this idea in...
@jo-pouradier Hello, second variant, you can add this `if` to pre_open hook ```lua pre_open = function(path) local is_showed = require("float-preview.utils").is_showed(path) if is_showed then return false end ... end ``` It...