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 /plugin/lspconfig.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 'plugin/lspconfig.lua')
| -rw-r--r-- | plugin/lspconfig.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/lspconfig.lua b/plugin/lspconfig.lua index 254ca6cc..e5d924cc 100644 --- a/plugin/lspconfig.lua +++ b/plugin/lspconfig.lua @@ -94,7 +94,7 @@ api.nvim_create_user_command('LspRestart', function(info) detach_clients[client.name] = { client, lsp.get_buffers_by_client_id(client.id) } end end - local timer = vim.loop.new_timer() + local timer = vim.uv.new_timer() timer:start( 500, 100, |
