From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7309659CA3 for ; Sun, 6 Mar 2016 12:02:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0D2A021C066 for ; Sun, 6 Mar 2016 12:02:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72C4EE078A for ; Sat, 5 Mar 2016 23:50:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 06C58340A61 for ; Sat, 5 Mar 2016 23:50:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7E1775D for ; Sat, 5 Mar 2016 23:50:30 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1457221642.0a73aafc90fec9e9e58b41e95c5f6570b19baf48.radhermit@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: syntax/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: syntax/ebuild.vim X-VCS-Directories: syntax/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 0a73aafc90fec9e9e58b41e95c5f6570b19baf48 X-VCS-Branch: master Date: Sat, 5 Mar 2016 23:50:30 +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: e80312ab-05f7-4469-ab72-2ef518c35d0d X-Archives-Hash: b17b95365d78f006d037f3fa2baf2d3a commit: 0a73aafc90fec9e9e58b41e95c5f6570b19baf48 Author: Tim Harder gentoo org> AuthorDate: Sat Mar 5 23:47:10 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Mar 5 23:47:22 2016 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=0a73aafc syntax/ebuild: esetup.py needs to be a syntax match not keyword Otherwise it doesn't work properly due to the '.' character. syntax/ebuild.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syntax/ebuild.vim b/syntax/ebuild.vim index 3d2da4a..c9e8cea 100644 --- a/syntax/ebuild.vim +++ b/syntax/ebuild.vim @@ -201,11 +201,12 @@ syn keyword EbuildDeprecatedKeyword distutils_src_test distutils_src_install dis syn keyword EbuildDeprecatedKeyword distutils_pkg_postrm " distutils-r1 -syn keyword EbuildDistutilsKeyword esetup.py distutils_install_for_testing +syn keyword EbuildDistutilsKeyword distutils_install_for_testing syn keyword EbuildDistutilsKeyword distutils-r1_python_prepare_all syn keyword EbuildDistutilsKeyword distutils-r1_python_compile syn keyword EbuildDistutilsKeyword distutils-r1_python_install syn keyword EbuildDistutilsKeyword distutils-r1_python_install_all +syn match EbuildDistutilsKeyword "esetup\.py" " distutils-r1 sub-phases syn keyword EbuildDistutilsFunction python_prepare python_prepare_all