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

(cherry picked from commit f8e1ebd6f6)
This commit is contained in:
Riley Bruins
2024-08-26 20:40:37 -07:00
committed by Christian Clason
parent d593b20017
commit a6b2233c3e

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