diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2022-07-17 11:43:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-17 11:43:44 +0200 |
commit | aae11865e1f74678a6415703ce1e076d195a2c26 (patch) | |
tree | a35718406068c7001bae1f3b1e7d7f74130f2030 /runtime/lua/vim/lsp/handlers.lua | |
parent | 9e7f92e59a7fbbc0e266700db1f25278eb30cb2a (diff) | |
parent | f59c96903a61702c69a5bf23a7adb09fff435331 (diff) | |
download | rneovim-aae11865e1f74678a6415703ce1e076d195a2c26.tar.gz rneovim-aae11865e1f74678a6415703ce1e076d195a2c26.tar.bz2 rneovim-aae11865e1f74678a6415703ce1e076d195a2c26.zip |
Merge #19309 from ii14/lsp_refactor_1
refactor(lsp): make the use of local aliases more consistent
Diffstat (limited to 'runtime/lua/vim/lsp/handlers.lua')
-rw-r--r-- | runtime/lua/vim/lsp/handlers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/handlers.lua b/runtime/lua/vim/lsp/handlers.lua index 8a64e64396..68e1f59aaf 100644 --- a/runtime/lua/vim/lsp/handlers.lua +++ b/runtime/lua/vim/lsp/handlers.lua @@ -61,7 +61,7 @@ local function progress_handler(_, result, ctx, _) client.messages.progress[token].done = true end - vim.api.nvim_command('doautocmd <nomodeline> User LspProgressUpdate') + api.nvim_command('doautocmd <nomodeline> User LspProgressUpdate') end --see: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#progress |