diff options
| author | dundargoc <gocdundar@gmail.com> | 2024-12-01 13:01:51 +0100 |
|---|---|---|
| committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-12-02 11:12:18 +0100 |
| commit | 9b89ba5f158f73779cd58d0bb2783dfb40b28b0e (patch) | |
| tree | d35c60d499f9866c6f0ad9298f4ceea26e83eb1d /lua/lspconfig/configs/vdmj.lua | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.tar nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.tar.gz nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.tar.bz2 nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.tar.lz nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.tar.xz nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.tar.zst nvim-lspconfig-9b89ba5f158f73779cd58d0bb2783dfb40b28b0e.zip | |
refactor: replace all instances of vim.uv with vim.loop
We still support neovim 0.9 currently, so we can't use vim.uv. Also add
a check so we don't accidentally reintroduce it.
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 a9621a74..7d381b6e 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.uv.fs_stat(util.path.join(path, file)) + local stat = vim.loop.fs_stat(util.path.join(path, file)) return stat.type == 'directory' and 1 or 0 end |
