fix: Fix jsonpath node selection

This commit is contained in:
Myzel394 2025-06-07 22:43:20 +02:00
parent d0791d5f93
commit a1c07adc00
Signed by: Myzel394
GPG Key ID: 79E65B4AA44EBBF0

View File

@ -239,7 +239,10 @@ return require("telescope").register_extension({
end
if global_config.backend == "lsp" then
local params = vim.lsp.util.make_position_params(xopts.winnr)
local params = vim.lsp.util.make_position_params(
xopts.winnr,
"utf-8"
)
-- Check i
local clients = vim.lsp.get_clients()