diff options
author | altermo <107814000+altermo@users.noreply.github.com> | 2024-03-04 12:08:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-04 19:08:23 +0800 |
commit | a8131aee9ecc640415903d590b15863ce1c99112 (patch) | |
tree | f7eb08232faf21903db4ea465e380087e24b8475 /runtime/lua/tohtml.lua | |
parent | 3df1211ebc4c7ec4562d0ad0fa51a24569b81e15 (diff) | |
download | rneovim-a8131aee9ecc640415903d590b15863ce1c99112.tar.gz rneovim-a8131aee9ecc640415903d590b15863ce1c99112.tar.bz2 rneovim-a8131aee9ecc640415903d590b15863ce1c99112.zip |
fix(tohtml): replace hex escape with digit escape (#27728)
Diffstat (limited to 'runtime/lua/tohtml.lua')
-rw-r--r-- | runtime/lua/tohtml.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/lua/tohtml.lua b/runtime/lua/tohtml.lua index 52e0742ef3..d15412edee 100644 --- a/runtime/lua/tohtml.lua +++ b/runtime/lua/tohtml.lua @@ -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], |