mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00
fix(treesitter): escape things like "
in omnifunc results
This commit is contained in:

committed by
Christian Clason

parent
d9ccd828b0
commit
f8e1ebd6f6
@@ -241,7 +241,7 @@ function M.omnifunc(findstart, base)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
for _, s in pairs(parser_info.symbols) do
|
for _, s in pairs(parser_info.symbols) do
|
||||||
local text = s[2] and s[1] or '"' .. s[1]:gsub([[\]], [[\\]]) .. '"' ---@type string
|
local text = s[2] and s[1] or string.format('%q', s[1]):gsub('\n', 'n') ---@type string
|
||||||
if text:find(base, 1, true) then
|
if text:find(base, 1, true) then
|
||||||
table.insert(items, text)
|
table.insert(items, text)
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user