runtime(html): bump length of character references in syntax script (#15022)
Commit: https://github.com/vim/vim/commit/917ff8a19d2746dd922b7292dc61fb92e18b7ce2 Author: Mohamed Akram <mohd.ak...@outlook.com> Date: Sun Jun 16 18:47:36 2024 +0400 runtime(html): bump length of character references in syntax script (https://github.com/vim/vim/issues/15022) This allows handling longer references such as `∳`. Signed-off-by: Mohamed Akram <mohd.ak...@outlook.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/syntax/html.vim b/runtime/syntax/html.vim index c975ae862..d067dde83 100644 --- a/runtime/syntax/html.vim +++ b/runtime/syntax/html.vim @@ -191,7 +191,7 @@ syn keyword htmlArg contained step title translate typemustmatch syn match htmlArg contained "\<data-\h\%(\w\|[-.]\)*\%(\_s*=\)\@=" " special characters -syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,8};" +syn match htmlSpecialChar "&#\=[0-9A-Za-z]\{1,32};" " Comments (the real ones or the old netscape ones) if exists("html_wrong_comments") -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to vim_dev+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/E1sIrMW-00GcYg-GU%40256bit.org.