diff options
Diffstat (limited to 'lua/lspconfig/configs/turtle_ls.lua')
| -rw-r--r-- | lua/lspconfig/configs/turtle_ls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs/turtle_ls.lua b/lua/lspconfig/configs/turtle_ls.lua index 630f836d..68e57cbf 100644 --- a/lua/lspconfig/configs/turtle_ls.lua +++ b/lua/lspconfig/configs/turtle_ls.lua @@ -15,7 +15,7 @@ if bin_path == nil then end for _, p in ipairs(paths) do local candidate = table.concat({ p, bin_name }, '/') - if (vim.loop.fs_stat(candidate) or {}).type == 'file' then + if (vim.uv.fs_stat(candidate) or {}).type == 'file' then full_path = candidate break end |
