diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-12-02 10:12:49 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-12-02 10:12:49 +0000 |
| commit | 627905ef6aabd99b31f369c33cd802a73144479c (patch) | |
| tree | 9df4b71b14c50d56b3154da6f94072908eaa4fa5 | |
| parent | refactor: replace all instances of vim.uv with vim.loop (diff) | |
| download | nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.tar nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.tar.gz nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.tar.bz2 nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.tar.lz nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.tar.xz nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.tar.zst nvim-lspconfig-627905ef6aabd99b31f369c33cd802a73144479c.zip | |
docs: update configs.md
skip-checks: true
| -rw-r--r-- | doc/configs.md | 2 | ||||
| -rw-r--r-- | doc/configs.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/configs.md b/doc/configs.md index 575742e8..eabe8311 100644 --- a/doc/configs.md +++ b/doc/configs.md @@ -5661,7 +5661,7 @@ require'lspconfig'.lua_ls.setup { on_init = function(client) if client.workspace_folders then local path = client.workspace_folders[1].name - if vim.uv.fs_stat(path..'/.luarc.json') or vim.uv.fs_stat(path..'/.luarc.jsonc') then + if vim.loop.fs_stat(path..'/.luarc.json') or vim.loop.fs_stat(path..'/.luarc.jsonc') then return end end diff --git a/doc/configs.txt b/doc/configs.txt index 575742e8..eabe8311 100644 --- a/doc/configs.txt +++ b/doc/configs.txt @@ -5661,7 +5661,7 @@ require'lspconfig'.lua_ls.setup { on_init = function(client) if client.workspace_folders then local path = client.workspace_folders[1].name - if vim.uv.fs_stat(path..'/.luarc.json') or vim.uv.fs_stat(path..'/.luarc.jsonc') then + if vim.loop.fs_stat(path..'/.luarc.json') or vim.loop.fs_stat(path..'/.luarc.jsonc') then return end end |
