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 B06EA1382C5 for ; Wed, 16 Dec 2020 13:32:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF360E09C6; Wed, 16 Dec 2020 13:32:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D8963E09C6 for ; Wed, 16 Dec 2020 13:32:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E930833BE6B for ; Wed, 16 Dec 2020 13:32:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57EC5BF for ; Wed, 16 Dec 2020 13:32:34 +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: <1608125525.4cc031a5d3384ee9cc3225ff038a633be6b7125f.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: 4cc031a5d3384ee9cc3225ff038a633be6b7125f X-VCS-Branch: master Date: Wed, 16 Dec 2020 13:32:34 +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: f7d02eb5-9136-4f76-925a-696bb1a31347 X-Archives-Hash: f56499074136083ca5e3c8f4d3a9970e commit: 4cc031a5d3384ee9cc3225ff038a633be6b7125f Author: Michał Górny gentoo org> AuthorDate: Wed Dec 16 13:32:05 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Dec 16 13:32:05 2020 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=4cc031a5 Revert "make use and unuse highlights always red and green" This does not work with people with different terminal color set. Reverts: 5cc93fd715b9d0c1d73adae904fde0767d4671a1 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 89f9bc0..d66033c 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 GentooMakeConfEUseID ctermfg=Red -hi def GentooMakeConfEUseIE ctermfg=DarkGreen +hi def link GentooMakeConfEUseID Keyword +hi def link GentooMakeConfEUseIE Special 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 557eecd..0a97da3 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 GentooPackageUseUse ctermfg=DarkGreen -hi def GentooPackageUseUnuse ctermfg=Red +hi def link GentooPackageUseUse Special +hi def link GentooPackageUseUnuse Keyword hi def link GentooPackageUseExpand Type let b:current_syntax = "gentoo-package-use"