fix(tohtml): replace hex escape with digit escape (#27728)

This commit is contained in:
altermo
2024-03-04 12:08:23 +01:00
committed by GitHub
parent 3df1211ebc
commit a8131aee9e
2 changed files with 4 additions and 2 deletions

View File

@ -906,7 +906,9 @@ local function styletable_listchars(state)
if listchars.nbsp then
for _, match in
ipairs(vim.fn.matchbufline(state.bufnr, '\xe2\x80\xaf\\|\xa0', 1, '$') --[[@as (table[])]])
ipairs(
vim.fn.matchbufline(state.bufnr, '\226\128\175\\|\194\160', 1, '$') --[[@as (table[])]]
)
do
style_line_insert_overlay_char(
state.style[match.lnum],