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 23632138334 for ; Tue, 21 Aug 2018 08:02:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B3C9E088B; Tue, 21 Aug 2018 08:02:46 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 11DE4E088D for ; Tue, 21 Aug 2018 08:02:46 +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 CB3E9335D57 for ; Tue, 21 Aug 2018 08:02:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A199E3B7 for ; Tue, 21 Aug 2018 08:02:41 +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: <1534837891.ad00dd068848520811e07034af2bc9fa5d2266e7.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: syntax/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: syntax/gentoo-package-use.vim X-VCS-Directories: syntax/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: ad00dd068848520811e07034af2bc9fa5d2266e7 X-VCS-Branch: master Date: Tue, 21 Aug 2018 08:02:41 +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-Archives-Salt: 000f238b-d3c2-45e3-8f6d-1f679b8ae4b6 X-Archives-Hash: 14e7e796b98e1f4935fe9dbff1141e97 commit: ad00dd068848520811e07034af2bc9fa5d2266e7 Author: Michał Górny gentoo org> AuthorDate: Tue Aug 21 07:51:10 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 21 07:51:31 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=ad00dd06 syntax/gentoo-package-use: Support '*' and '-*' flag wildcards syntax/gentoo-package-use.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/syntax/gentoo-package-use.vim b/syntax/gentoo-package-use.vim index 251367e..0a97da3 100644 --- a/syntax/gentoo-package-use.vim +++ b/syntax/gentoo-package-use.vim @@ -19,11 +19,11 @@ endif runtime syntax/gentoo-package-common.vim syn match GentooPackageUseUse contained - \ /[a-zA-Z0-9][a-zA-Z0-9\-_]*\(:\)\@!/ + \ /\([a-zA-Z0-9][a-zA-Z0-9\-_]*\|\*\)\(:\)\@!/ \ nextgroup=GentooPackageUseUse,GentooPackageUseUnuse, \ GentooPackageUseExpand skipwhite syn match GentooPackageUseUnuse contained - \ /-[a-zA-Z0-9][a-zA-Z0-9\-_]*\(:\)\@!/ + \ /-\([a-zA-Z0-9][a-zA-Z0-9\-_]*\|\*\)\(:\)\@!/ \ nextgroup=GentooPackageUseUse,GentooPackageUseUnuse, \ GentooPackageUseExpand skipwhite syn match GentooPackageUseExpand contained