diff options
author | Michael Lingelbach <m.j.lbach@gmail.com> | 2021-11-17 12:14:45 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 21:14:45 +0100 |
commit | eb3d59126eff50c64c2108e308884a722e7ee32e (patch) | |
tree | e8daf04427e84203e914675991a73669fe10335f /runtime/lua/vim/lsp/handlers.lua | |
parent | c0efe49e78eca3a17a5934cc283199122d081467 (diff) | |
download | rneovim-eb3d59126eff50c64c2108e308884a722e7ee32e.tar.gz rneovim-eb3d59126eff50c64c2108e308884a722e7ee32e.tar.bz2 rneovim-eb3d59126eff50c64c2108e308884a722e7ee32e.zip |
fix(lsp): change signature of buf_highlight_references (#16345)
the prior signature did not assume an active language client
this function can now be used directly by passing an offset encoding
defaults to utf-16 (standard for LSP)
Diffstat (limited to 'runtime/lua/vim/lsp/handlers.lua')
-rw-r--r-- | runtime/lua/vim/lsp/handlers.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/lua/vim/lsp/handlers.lua b/runtime/lua/vim/lsp/handlers.lua index a561630c2b..fa4f2b22a5 100644 --- a/runtime/lua/vim/lsp/handlers.lua +++ b/runtime/lua/vim/lsp/handlers.lua @@ -350,7 +350,10 @@ M['textDocument/signatureHelp'] = M.signature_help --see: https://microsoft.github.io/language-server-protocol/specifications/specification-current/#textDocument_documentHighlight M['textDocument/documentHighlight'] = function(_, result, ctx, _) if not result then return end - util.buf_highlight_references(ctx.bufnr, result, ctx.client_id) + local client_id = ctx.client_id + local client = vim.lsp.get_client_by_id(client_id) + if not client then return end + util.buf_highlight_references(ctx.bufnr, result, client.offset_encoding) end ---@private |