Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/locateopen/
Date: Wed, 29 Jun 2016 11:49:28
Message-Id: 1467199239.a284ec5f1bc47733dcb9a187456d14165d96b9d7.monsieurp@gentoo
1 commit: a284ec5f1bc47733dcb9a187456d14165d96b9d7
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 11:14:50 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 11:20:39 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a284ec5f
7
8 app-vim/locateopen: EAPI 6 bump.
9
10 Package-Manager: portage-2.2.28
11
12 app-vim/locateopen/locateopen-1.3-r1.ebuild | 27 +++++++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/app-vim/locateopen/locateopen-1.3-r1.ebuild b/app-vim/locateopen/locateopen-1.3-r1.ebuild
16 new file mode 100644
17 index 0000000..1426846
18 --- /dev/null
19 +++ b/app-vim/locateopen/locateopen-1.3-r1.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +inherit vim-plugin
28 +
29 +DESCRIPTION="vim plugin: open a file without supplying a path"
30 +HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=858"
31 +
32 +LICENSE="vim"
33 +KEYWORDS="~alpha ~amd64 ~ia64 ~mips ~ppc ~sparc ~x86"
34 +IUSE=""
35 +
36 +RDEPEND="${RDEPEND} sys-apps/mlocate"
37 +
38 +VIM_PLUGIN_HELPTEXT=\
39 +"This plugin provides commands that hook vim into mlocate:
40 +\ :LocateEdit filename
41 +\ :LocateSplit filename
42 +\ :LocateSource filename
43 +\ :LocateRead filename
44 +To configure:
45 +\ :let g:locateopen_ignorecase = 1 \" enable ignore case mode
46 +\ :let g:locateopen_smartcase = 0 \" disable smart case mode
47 +\ :let g:locateopen_alwaysprompt = 1 \" show menu for one match"