From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3FA2138359 for ; Mon, 5 Oct 2020 15:27:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 010A1E0938; Mon, 5 Oct 2020 15:27:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DB8C3E0938 for ; Mon, 5 Oct 2020 15:27:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0CF9335C16 for ; Mon, 5 Oct 2020 15:27:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5800C343 for ; Mon, 5 Oct 2020 15:27:42 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1601911545.5cc93fd715b9d0c1d73adae904fde0767d4671a1.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: syntax/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: syntax/gentoo-make-conf.vim syntax/gentoo-package-use.vim X-VCS-Directories: syntax/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 5cc93fd715b9d0c1d73adae904fde0767d4671a1 X-VCS-Branch: master Date: Mon, 5 Oct 2020 15:27:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fb2d5b72-50a4-48ee-88d5-2e1720c32d5b X-Archives-Hash: 87b6801006c2259bec043c6f5f3b46f3 commit: 5cc93fd715b9d0c1d73adae904fde0767d4671a1 Author: Cássio Ribeiro Alves de Ávila protonmail com> AuthorDate: Thu Oct 1 14:12:05 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Oct 5 15:25:45 2020 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=5cc93fd7 make use and unuse highlights always red and green Signed-off-by: Cássio Ribeiro Alves de Ávila yandex.com> Closes: https://github.com/gentoo/gentoo-syntax/pull/32 Signed-off-by: Michał Górny gentoo.org> syntax/gentoo-make-conf.vim | 4 ++-- syntax/gentoo-package-use.vim | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/syntax/gentoo-make-conf.vim b/syntax/gentoo-make-conf.vim index d66033c..89f9bc0 100644 --- a/syntax/gentoo-make-conf.vim +++ b/syntax/gentoo-make-conf.vim @@ -58,8 +58,8 @@ syn match GentooMakeConfEUseIX /\\.\|\$\({[^}]\+}\|[a-zA-Z0-9\-\_]\+\)/ contai hi def link GentooMakeConfEUse Identifier hi def link GentooMakeConfEUseV String -hi def link GentooMakeConfEUseID Keyword -hi def link GentooMakeConfEUseIE Special +hi def GentooMakeConfEUseID ctermfg=Red +hi def GentooMakeConfEUseIE ctermfg=DarkGreen hi def link GentooMakeConfEUseIG Preproc hi def link GentooMakeConfEUseIB Error hi def link GentooMakeConfEUseIX Preproc diff --git a/syntax/gentoo-package-use.vim b/syntax/gentoo-package-use.vim index 0a97da3..557eecd 100644 --- a/syntax/gentoo-package-use.vim +++ b/syntax/gentoo-package-use.vim @@ -33,8 +33,8 @@ syn match GentooPackageUseExpand contained syn cluster GentooPackagePostAtom contains=GentooPackageUseUse, \ GentooPackageUseUnuse,GentooPackageUseExpand -hi def link GentooPackageUseUse Special -hi def link GentooPackageUseUnuse Keyword +hi def GentooPackageUseUse ctermfg=DarkGreen +hi def GentooPackageUseUnuse ctermfg=Red hi def link GentooPackageUseExpand Type let b:current_syntax = "gentoo-package-use"