Fix UTF-8 matches in regex group `tokenizer`
This commit is contained in:
parent
2a41002355
commit
7ac776bef6
|
@ -173,18 +173,21 @@ function tokenizer.tokenize(incoming_syntax, text, state)
|
|||
or { regex.match(code, text, text:ucharpos(next), (at_start or p.whole_line[p_idx]) and regex.ANCHORED or 0) }
|
||||
if p.regex and #res > 0 then -- set correct utf8 len for regex result
|
||||
res[2] = res[1] + string.ulen(text:sub(res[1], res[2])) - 1
|
||||
res[1] = next
|
||||
-- `regex.match` returns group results as a series of `begin, end`
|
||||
-- we only want `begin`s
|
||||
if #res >= 3 then
|
||||
res[3] = res[1] + string.ulen(text:sub(res[1], res[3])) - 1
|
||||
end
|
||||
for i=1,(#res-3) do
|
||||
local curr = i + 3
|
||||
local from = i * 2 + 3
|
||||
if from < #res then
|
||||
res[curr] = string.uoffset(text, res[from])
|
||||
res[curr] = res[1] + string.ulen(text:sub(res[1], res[from])) - 1
|
||||
else
|
||||
res[curr] = nil
|
||||
end
|
||||
end
|
||||
res[1] = next
|
||||
end
|
||||
if res[1] and close and target[3] then
|
||||
local count = 0
|
||||
|
|
Loading…
Reference in New Issue