fix(treesitter): escape things like " in omnifunc results

This commit is contained in:
Riley Bruins 2024-08-26 20:40:37 -07:00 committed by Christian Clason
parent d9ccd828b0
commit f8e1ebd6f6

View File

@ -241,7 +241,7 @@ function M.omnifunc(findstart, base)
end
end
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
table.insert(items, text)
end