aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/relay_lsp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lspconfig/configs/relay_lsp.lua')
-rw-r--r--lua/lspconfig/configs/relay_lsp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lspconfig/configs/relay_lsp.lua b/lua/lspconfig/configs/relay_lsp.lua
index cc8e2c5b..d1b4193d 100644
--- a/lua/lspconfig/configs/relay_lsp.lua
+++ b/lua/lspconfig/configs/relay_lsp.lua
@@ -36,7 +36,7 @@ return {
if config.path_to_config then
config.path_to_config = vim.fs.normalize(config.path_to_config)
local path_to_config = table.concat({ root_dir, config.path_to_config }, '/')
- if vim.loop.fs_stat(path_to_config) then
+ if vim.uv.fs_stat(path_to_config) then
vim.list_extend(config.cmd, { config.path_to_config })
vim.list_extend(compiler_cmd, { config.path_to_config })
else