diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-10-02 12:02:33 +0200 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-10-02 12:09:17 +0200 |
| commit | c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5 (patch) | |
| tree | e396c087799aa5e21cb869b21b7ff694c01a7183 /lua/lspconfig/configs/vdmj.lua | |
| parent | feat: expose config definition as `config_def` #3335 (diff) | |
| download | nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.tar nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.tar.gz nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.tar.bz2 nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.tar.lz nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.tar.xz nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.tar.zst nvim-lspconfig-c25b9dd6bddb125b538f3f01cb47b4a6e606f6c5.zip | |
refactor: replace deprecated vim.loop with vim.uv
Diffstat (limited to 'lua/lspconfig/configs/vdmj.lua')
| -rw-r--r-- | lua/lspconfig/configs/vdmj.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs/vdmj.lua b/lua/lspconfig/configs/vdmj.lua index 865e263f..f37fec51 100644 --- a/lua/lspconfig/configs/vdmj.lua +++ b/lua/lspconfig/configs/vdmj.lua @@ -22,7 +22,7 @@ local function get_latest_installed_version(repo) local sort = vim.fn.sort local subdirs = function(file) - local stat = vim.loop.fs_stat(util.path.join(path, file)) + local stat = vim.uv.fs_stat(util.path.join(path, file)) return stat.type == 'directory' and 1 or 0 end |
