aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/fs.lua
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/lua/vim/fs.lua')
-rw-r--r--runtime/lua/vim/fs.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/lua/vim/fs.lua b/runtime/lua/vim/fs.lua
index 6f9c48ca24..ce845eda15 100644
--- a/runtime/lua/vim/fs.lua
+++ b/runtime/lua/vim/fs.lua
@@ -61,7 +61,8 @@ end
function M.dir(path)
return function(fs)
return vim.loop.fs_scandir_next(fs)
- end, vim.loop.fs_scandir(M.normalize(path))
+ end,
+ vim.loop.fs_scandir(M.normalize(path))
end
--- Find files or directories in the given path.