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 2A6B7138334 for ; Tue, 14 Aug 2018 13:55:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4BBF8E08A2; Tue, 14 Aug 2018 13:55:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 25527E08A2 for ; Tue, 14 Aug 2018 13:55:33 +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 DDB33335CA9 for ; Tue, 14 Aug 2018 13:55:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F2DE3A2 for ; Tue, 14 Aug 2018 13:55:30 +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: <1534254925.604d85f810300b04dbe5139c65f31ebe3055eea8.mgorny@gentoo> Subject: [gentoo-commits] proj/gentoo-syntax:master commit in: ftdetect/ X-VCS-Repository: proj/gentoo-syntax X-VCS-Files: ftdetect/gentoo.vim X-VCS-Directories: ftdetect/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 604d85f810300b04dbe5139c65f31ebe3055eea8 X-VCS-Branch: master Date: Tue, 14 Aug 2018 13:55: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: ba7700dc-2848-4c38-a32d-551fed931f36 X-Archives-Hash: bc2c540ce34ce080c8a5034f42ae5543 commit: 604d85f810300b04dbe5139c65f31ebe3055eea8 Author: Michał Górny gentoo org> AuthorDate: Fri Sep 15 12:43:11 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Aug 14 13:55:25 2018 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-syntax.git/commit/?id=604d85f8 ftdetect: Account for GLEPs using .rst suffix ftdetect/gentoo.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftdetect/gentoo.vim b/ftdetect/gentoo.vim index 305d567..610c6ef 100644 --- a/ftdetect/gentoo.vim +++ b/ftdetect/gentoo.vim @@ -18,7 +18,7 @@ au BufNewFile,BufRead *.e{build,class} \ set filetype=ebuild " GLEPs -au BufNewFile,BufRead *.txt +au BufNewFile,BufRead *.txt,*.rst \ if (getline(1) =~? "^GLEP: ") | \ set filetype=glep | \ endif