cleanup: use vim.uv instead of vim.loop everywhere (#2762)

This commit is contained in:
Dmitry Torokhov
2025-10-15 03:44:40 -07:00
committed by GitHub
parent 0716819a0e
commit 4fc83dc308
7 changed files with 16 additions and 16 deletions

View File

@@ -296,7 +296,7 @@ end
function M.remove_selected_file(filepath)
---@diagnostic disable-next-line: undefined-field
local stat = vim.loop.fs_stat(filepath)
local stat = vim.uv.fs_stat(filepath)
local files
if stat and stat.type == "directory" then
files = Utils.scan_directory({ directory = filepath, add_dirs = true })