commit: 9b572f92349cf63d44ff457e2942838d7e1385e3 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Mon Aug 20 20:36:07 2018 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Mon Aug 20 20:36:07 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=9b572f92
syntax/ebuild: Also detect whitespace errors in double quotes Include our whitespace error thingies in the list of thingies for double-quotes. Sadly, the shell syntax highlighting seems to miss a list for single quotes. Bug: https://bugs.gentoo.org/637104 syntax/ebuild.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax/ebuild.vim b/syntax/ebuild.vim index 1fb0ce4..e89d4cf 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -319,7 +319,7 @@ syn cluster EbuildThings add=EbuildCDROMKeyword,EbuildLinuxInfoKeyword,EbuildDis syn cluster shCommandSubList add=@EbuildThings syn cluster shCommentGroup add=GentooBug -syn cluster shDblQuoteList add=EbuildErrorC +syn cluster shDblQuoteList add=EbuildErrorC,GentooError syn cluster shExprList2 add=GentooError hi def link EbuildCoreKeyword Keyword
