From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A7A15158B20 for ; Sun, 02 Feb 2025 14:35:06 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 7F12033BF41 for ; Sun, 02 Feb 2025 14:35:06 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 815AF1103B6; Sun, 02 Feb 2025 14:35:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 76B411103B6 for ; Sun, 02 Feb 2025 14:35:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2EF26335D6A for ; Sun, 02 Feb 2025 14:35:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6B2B323F4 for ; Sun, 02 Feb 2025 14:35:03 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1738269765.4276f64b8b0417a7535313dd266d6faefc071ed1.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: modules/, / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog modules/editor.eselect modules/visual.eselect X-VCS-Directories: / modules/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 4276f64b8b0417a7535313dd266d6faefc071ed1 X-VCS-Branch: master Date: Sun, 02 Feb 2025 14:35:03 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 501504d3-3969-47c6-951c-43346ec4ed3a X-Archives-Hash: cfa561c29526d0fa17178b8739d2515a commit: 4276f64b8b0417a7535313dd266d6faefc071ed1 Author: Ulrich Müller gentoo org> AuthorDate: Thu Jan 30 20:42:45 2025 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Jan 30 20:42:45 2025 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=4276f64b Update lists in editor and visual modules * modules/editor.eselect (EDITOR_LIST): * modules/visual.eselect (EDITOR_LIST): (Re-)add ex, mg, vi and xemacs. Bug 930037. Bug: https://bugs.gentoo.org/930037 Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 6 ++++++ modules/editor.eselect | 4 ++-- modules/visual.eselect | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f5f84ca..e7d347e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-01-30 Ulrich Müller + + * modules/editor.eselect (EDITOR_LIST): + * modules/visual.eselect (EDITOR_LIST): (Re-)add ex, mg, vi + and xemacs. Bug 930037. + 2025-01-05 Ulrich Müller * libs/editor-variable.bash.in (write_env_value): diff --git a/modules/editor.eselect b/modules/editor.eselect index 4304fb5..5c26ff1 100644 --- a/modules/editor.eselect +++ b/modules/editor.eselect @@ -1,11 +1,11 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 2009-2023 Gentoo Authors +# Copyright 2009-2025 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 emacs vim" +EDITOR_LIST="nano emacs ex mg vi vim xemacs" inherit editor-variable diff --git a/modules/visual.eselect b/modules/visual.eselect index 01c25b5..7b6e432 100644 --- a/modules/visual.eselect +++ b/modules/visual.eselect @@ -1,11 +1,11 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 2009-2023 Gentoo Authors +# Copyright 2009-2025 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 vim" +EDITOR_LIST="nano emacs mg vi vim xemacs" inherit editor-variable