diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-09-01 18:20:03 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-09-01 18:20:03 +0200 |
commit | 07f6f93065ffc2aa6fe398eebbf31013a092701b (patch) | |
tree | 0430a2e90d9ebd0e11ce47206abd1d447757c982 | |
parent | newglep: Add empty line after copyright heading (diff) | |
download | gentoo-syntax-07f6f93065ffc2aa6fe398eebbf31013a092701b.tar.gz gentoo-syntax-07f6f93065ffc2aa6fe398eebbf31013a092701b.tar.bz2 gentoo-syntax-07f6f93065ffc2aa6fe398eebbf31013a092701b.zip |
Update eclassdoc tagsgentoo-syntax-20210901
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | syntax/ebuild.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syntax/ebuild.vim b/syntax/ebuild.vim index a7edf68..7578ee6 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -267,7 +267,7 @@ syn match EbuildExportFunctionsFunc contained /\S\+\(\s\|$\)\@=/ skipwhite nextg syn match EbuildExportFunctionsFuncE contained /\S\+\(\s\|$\)\@=\(\${\S\+}\|pkg_pretend\|pkg_nofetch\|pkg_setup\|src_unpack\|src_prepare\|src_configure\|src_compile\|src_test\|src_install\|pkg_preinst\|pkg_postinst\|pkg_prerm\|pkg_postrm\|pkg_config\|pkg_info\)\@<!/ skipwhite nextgroup=EbuildExportFunctionsFunc,EbuildExportFunctionsFuncE " Eclass documentation -syn match EclassDocumentation /@\(AUTHOR\|BLURB\|BUGREPORTS\|CODE\|DEAD\|DESCRIPTION\|DEFAULT_UNSET\|ECLASS-VARIABLE\|ECLASS\|EXAMPLE\|FUNCTION\|INTERNAL\|MAINTAINER\|OUTPUT_VARIABLE\|PRE_INHERIT\|RETURN\|REQUIRED\|ROFF\|SUPPORTED_EAPIS\|USAGE\|USER_VARIABLE\|VARIABLE\|VCSURL\):/ contained +syn match EclassDocumentation /@\(AUTHOR\|BLURB\|BUGREPORTS\|CODE\|DEAD\|DEPRECATED\|DESCRIPTION\|DEFAULT_UNSET\|ECLASS-VARIABLE\|ECLASS\|EXAMPLE\|FUNCTION\|INCLUDES_EPREFIX\|INTERNAL\|MAINTAINER\|OUTPUT_VARIABLE\|PRE_INHERIT\|PROVIDES\|RETURN\|REQUIRED\|SUBSECTION\|SUPPORTED_EAPIS\|USAGE\|USER_VARIABLE\|VARIABLE\|VCSURL\):/ contained " use shComment (sh.vim), make it compatible with other comment highlights syn match shComment "^\s*\zs#.*$" contains=EclassDocumentation syn match shComment "\s\zs#.*$" contains=EclassDocumentation |