commit d3e4ffafff425cf488c2bd076678a63440875cb7
parent 7d771c3eeef5b4dca9ebc5ed6f7ca03f2b26b6bc
Author: Lewis Russell <lewis6991@gmail.com>
Date: Thu, 14 Nov 2024 14:17:33 +0000
feat(lsp): support utf-8 and utf-32 position encodings
Resolves #30034
Diffstat:
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
@@ -214,6 +214,7 @@ LSP
clients.
• |vim.lsp.buf.signature_help()| can now cycle through different signatures
using `<C-s>` and also support multiple clients.
+• The client now supports `'utf-8'` and `'utf-32'` position encodings.
LUA
diff --git a/runtime/lua/vim/lsp/protocol.lua b/runtime/lua/vim/lsp/protocol.lua
@@ -338,7 +338,9 @@ function protocol.make_client_capabilities()
return {
general = {
positionEncodings = {
+ 'utf-8',
'utf-16',
+ 'utf-32',
},
},
textDocument = {