diff options
| author | Lewis Russell <lewis6991@gmail.com> | 2023-06-03 11:06:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-03 12:06:00 +0200 |
| commit | 2db719f6c2b677fcbc197b02fe52764a851523b2 (patch) | |
| tree | 648885f655ea6eea2d6b5ad9409bc18c3b49e0f7 /runtime/lua/nvim | |
| parent | c65e2203f70cd5d66fcb8ffb26f8cef38f50e04f (diff) | |
| download | rneovim-2db719f6c2b677fcbc197b02fe52764a851523b2.tar.gz rneovim-2db719f6c2b677fcbc197b02fe52764a851523b2.tar.bz2 rneovim-2db719f6c2b677fcbc197b02fe52764a851523b2.zip | |
feat(lua): rename vim.loop -> vim.uv (#22846)
Diffstat (limited to 'runtime/lua/nvim')
| -rw-r--r-- | runtime/lua/nvim/health.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/nvim/health.lua b/runtime/lua/nvim/health.lua index 19303d34f9..7ccb082a40 100644 --- a/runtime/lua/nvim/health.lua +++ b/runtime/lua/nvim/health.lua @@ -30,7 +30,7 @@ local function check_runtime() local bad_files_msg = '' for k, _ in pairs(bad_files) do local path = ('%s/%s'):format(vim.env.VIMRUNTIME, k) - if vim.loop.fs_stat(path) then + if vim.uv.fs_stat(path) then bad_files[k] = true bad_files_msg = ('%s%s\n'):format(bad_files_msg, path) end |