neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit c2c33249a732ad4df3de1c825bdedc950112500d
parent c9f62674028d764f8a6faa433baa7ab209956fc8
Author: zeertzjq <zeertzjq@outlook.com>
Date:   Fri, 19 Sep 2025 08:20:10 +0800

Merge pull request #35832 from zeertzjq/vim-1e7a288

vim-patch: Autoconf M4 syntax updates
Diffstat:
Mruntime/syntax/config.vim | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/runtime/syntax/config.vim b/runtime/syntax/config.vim @@ -1,10 +1,12 @@ " Vim syntax file -" Language: configure.in script: M4 with sh +" Language: Autoconf M4 " Former Maintainer: Christian Hammesr <ch@lathspell.westend.com> " Last Change: 2018 Feb 03 " (patch from Yngve Inntjore Levinsen to detect AC_MSG) " (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 ! @@ -34,6 +36,9 @@ syn region configstring start=+\z(["'`]\)+ skip=+\\\z1+ end=+\z1+ contains=@ syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze(\[" matchgroup=configdelimiter end="\])" contains=configdelimiter,@Spell syn region configmsg matchgroup=configfunction start="AC_MSG_[A-Z]*\ze([^[]" matchgroup=configdelimiter end=")" contains=configdelimiter,@Spell +" Help write portable shell code +syn match configPlusEq '\v\+\=' containedin=ALLBUT,configcomment + " Define the default highlighting. " Only when an item doesn't have highlighting yet @@ -47,6 +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 configPlusEq Error let b:current_syntax = "config"