blob: b786bce9fbbeffa79a7af36c49287c67d9137c67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*-eselect-*- vim: ft=eselect
# Copyright 2009-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EDITOR_VAR="EDITOR"
EDITOR_ENVFILE="/etc/env.d/99editor"
# list of most common cases only
EDITOR_LIST="/bin/nano
/bin/ed
/usr/bin/emacs
/usr/bin/ex
/usr/bin/pico
/usr/bin/vi
/usr/bin/xemacs
/usr/bin/zile"
inherit editor-variable
DESCRIPTION="Manage the ${EDITOR_VAR} environment variable"
MAINTAINER="ulm@gentoo.org"
SVN_DATE='$Date$'
VERSION=$(svn_date_to_version "${SVN_DATE}")
|