Skip to content

Commit e8b0e92

Browse files
zeertzjqchrisbra
authored andcommitted
runtime(config): fix inconsistent group name
related: #18292 Signed-off-by: zeertzjq <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
1 parent 0c70820 commit e8b0e92

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

runtime/syntax/config.vim

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
" (patch from Khym Chanur to add @Spell)
77
" (patch from James McCoy to fix paren matching)
88
" (2025 Sep 14 patch from Damien Lejay to detect unportable +=)
9+
" (2025 Sep 18 by Vim Project: fix inconsistent group name)
910

1011
" Well, I actually even do not know much about m4. This explains why there
1112
" is probably very much missing here, yet !
@@ -36,7 +37,7 @@ syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze(\[" matc
3637
syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze([^[]" matchgroup=configdelimiter end=")" contains=configdelimiter,@Spell
3738

3839
" Help write portable shell code
39-
syn match acPlusEq '\v\+\=' containedin=ALLBUT,configcomment
40+
syn match configPlusEq '\v\+\=' containedin=ALLBUT,configcomment
4041

4142
" Define the default highlighting.
4243
" Only when an item doesn't have highlighting yet
@@ -51,7 +52,7 @@ hi def link configkeyword Keyword
5152
hi def link configspecial Special
5253
hi def link configstring String
5354
hi def link configmsg String
54-
hi def link acPlusEq Error
55+
hi def link configPlusEq Error
5556

5657

5758
let b:current_syntax = "config"

0 commit comments

Comments
 (0)