From 7eb33d2a6d5d574a43159da90e0eac2445367393 Mon Sep 17 00:00:00 2001 From: Alexander Courtis Date: Sat, 4 Feb 2023 16:57:05 +1100 Subject: [PATCH] fix(#1831): remove instrumentation (#1969) --- lua/nvim-tree/explorer/explore.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/nvim-tree/explorer/explore.lua b/lua/nvim-tree/explorer/explore.lua index 42950289..0daa438d 100644 --- a/lua/nvim-tree/explorer/explore.lua +++ b/lua/nvim-tree/explorer/explore.lua @@ -59,7 +59,7 @@ end function M.explore(node, status) local cwd = node.link_to or node.absolute_path - local handle = utils.fs_scandir_profiled(cwd) + local handle = vim.loop.fs_scandir(cwd) if not handle then return end