diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-08-07 18:21:04 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-08-07 18:21:04 +0200 |
commit | e1577d699cfc3eb60b245c8488062a43e8cece22 (patch) | |
tree | 0768f046197b2e92cf0467e505e92f97b0246098 | |
parent | Avoid subshell on startup (diff) | |
download | eselect-e1577d699cfc3eb60b245c8488062a43e8cece22.tar.gz eselect-e1577d699cfc3eb60b245c8488062a43e8cece22.tar.bz2 eselect-e1577d699cfc3eb60b245c8488062a43e8cece22.zip |
Update lists in editor and visual modules
* modules/editor.eselect (EDITOR_LIST):
* modules/visual.eselect (EDITOR_LIST): Add vim; drop ed, ex, vi
and xemacs. Bug 911792.
Bug: https://bugs.gentoo.org/911792
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | modules/editor.eselect | 4 | ||||
-rw-r--r-- | modules/visual.eselect | 4 |
3 files changed, 10 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2023-08-07 Ulrich Müller <ulm@gentoo.org> + + * modules/editor.eselect (EDITOR_LIST): + * modules/visual.eselect (EDITOR_LIST): Add vim; drop ed, ex, vi + and xemacs. Bug 911792. + 2023-07-08 Ulrich Müller <ulm@gentoo.org> * bin/eselect.in (PATH): Avoid subshell. diff --git a/modules/editor.eselect b/modules/editor.eselect index 488d598..4304fb5 100644 --- a/modules/editor.eselect +++ b/modules/editor.eselect @@ -1,11 +1,11 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 2009-2020 Gentoo Authors +# Copyright 2009-2023 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later EDITOR_VAR="EDITOR" EDITOR_ENVFILE="/etc/env.d/99editor" # list of most common cases only -EDITOR_LIST="nano ed emacs ex vi xemacs" +EDITOR_LIST="nano emacs vim" inherit editor-variable diff --git a/modules/visual.eselect b/modules/visual.eselect index 527793e..01c25b5 100644 --- a/modules/visual.eselect +++ b/modules/visual.eselect @@ -1,11 +1,11 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 2009-2021 Gentoo Authors +# Copyright 2009-2023 Gentoo Authors # Distributed under the terms of the GNU GPL version 2 or later EDITOR_VAR="VISUAL" EDITOR_ENVFILE="/etc/env.d/99editor" # list of most common cases only -EDITOR_LIST="nano emacs vi xemacs" +EDITOR_LIST="nano emacs vim" inherit editor-variable |