runtime(config): fix inconsistent group name Commit: https://github.com/vim/vim/commit/e8b0e926d02d148d0bc785db7a6184d3844ceaaf Author: zeertzjq <zeert...@outlook.com> Date: Thu Sep 18 20:19:02 2025 +0000
runtime(config): fix inconsistent group name related: https://github.com/vim/vim/issues/18292 Signed-off-by: zeertzjq <zeert...@outlook.com> Signed-off-by: Christian Brabandt <c...@256bit.org> diff --git a/runtime/syntax/config.vim b/runtime/syntax/config.vim index d13e89b39..2e8f62693 100644 --- a/runtime/syntax/config.vim +++ b/runtime/syntax/config.vim @@ -6,6 +6,7 @@ " (patch from Khym Chanur to add @Spell) " (patch from James McCoy to fix paren matching) " (2025 Sep 14 patch from Damien Lejay to detect unportable +=) +" (2025 Sep 18 by Vim Project: fix inconsistent group name) " Well, I actually even do not know much about m4. This explains why there " is probably very much missing here, yet ! @@ -36,7 +37,7 @@ syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze(\[" matc syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze([^[]" matchgroup=configdelimiter end=")" contains=configdelimiter,@Spell " Help write portable shell code -syn match acPlusEq ' \+\=' containedin=ALLBUT,configcomment +syn match configPlusEq ' \+\=' containedin=ALLBUT,configcomment " Define the default highlighting. " Only when an item doesn't have highlighting yet @@ -51,7 +52,7 @@ hi def link configkeyword Keyword hi def link configspecial Special hi def link configstring String hi def link configmsg String -hi def link acPlusEq Error +hi def link configPlusEq Error let b:current_syntax = "config" -- -- 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 visit https://groups.google.com/d/msgid/vim_dev/E1uzLGW-00EpZW-2L%40256bit.org.