We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3886617 commit 1487cd9Copy full SHA for 1487cd9
lua/nvim-tree/actions/fs/remove-file.lua
@@ -71,6 +71,8 @@ local function remove_dir(cwd)
71
72
-- Type must come from fs_stat and not fs_scandir_next to maintain sshfs compatibility
73
local stat = vim.loop.fs_stat(new_cwd)
74
+ -- TODO remove once 0.12 is the minimum neovim version
75
+ -- path incorrectly specified as an integer, fixed upstream for neovim 0.12 https://github.com/neovim/neovim/pull/33872
76
---@diagnostic disable-next-line: param-type-mismatch
77
local lstat = vim.loop.fs_lstat(new_cwd)
78
0 commit comments