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 6781A138A87 for ; Thu, 26 Feb 2015 06:53:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05C0CE08D6; Thu, 26 Feb 2015 06:53:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94BF9E08D6 for ; Thu, 26 Feb 2015 06:53:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C6E6340A65 for ; Thu, 26 Feb 2015 06:53:03 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82DC112929 for ; Thu, 26 Feb 2015 06:52:58 +0000 (UTC) From: "Ben de Groot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben de Groot" Message-ID: <1424933563.abc77eb3cee687b3743160126eb8b2f070fc9e96.yngwin@gentoo> Subject: [gentoo-commits] proj/eselect:extern commit in: modules/ X-VCS-Repository: proj/eselect X-VCS-Files: modules/vi.eselect X-VCS-Directories: modules/ X-VCS-Committer: yngwin X-VCS-Committer-Name: Ben de Groot X-VCS-Revision: abc77eb3cee687b3743160126eb8b2f070fc9e96 X-VCS-Branch: extern Date: Thu, 26 Feb 2015 06:52:58 +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: 7827aba9-d889-4450-81b8-fff1dd756cc6 X-Archives-Hash: 91da794cc0e8075110415b29b5b8cc98 commit: abc77eb3cee687b3743160126eb8b2f070fc9e96 Author: Ben de Groot gentoo org> AuthorDate: Thu Feb 26 06:52:43 2015 +0000 Commit: Ben de Groot gentoo org> CommitDate: Thu Feb 26 06:52:43 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/eselect.git;a=commit;h=abc77eb3 Add neovim as option to vi.eselect --- modules/vi.eselect | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/vi.eselect b/modules/vi.eselect index 573ab11..2d25859 100644 --- a/modules/vi.eselect +++ b/modules/vi.eselect @@ -1,16 +1,17 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 DESCRIPTION="Manage /usr/bin/vi implementations" MAINTAINER="vim@gentoo.org" -VERSION="1.1.8" +VERSION="1.1.9" # find a list of vi symlink targets, best first find_targets() { local f for f in \ "${EROOT}"/usr/bin/vim \ + "${EROOT}"/usr/bin/nvim \ "${EROOT}"/usr/bin/nvi \ "${EROOT}"/usr/bin/elvis \ "${EROOT}"/usr/bin/vile \