From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D19CB158086 for ; Sun, 24 Oct 2021 10:04:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A27AE082B; Sun, 24 Oct 2021 10:04:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D810E082B for ; Sun, 24 Oct 2021 10:04:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A4ADB34374C for ; Sun, 24 Oct 2021 10:04:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 158B18F for ; Sun, 24 Oct 2021 10:04:36 +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: <1635069811.612152aacc400899dcb4d42f2c75acd63ae75033.ulm@gentoo> Subject: [gentoo-commits] proj/eselect:master commit in: modules/, / X-VCS-Repository: proj/eselect X-VCS-Files: ChangeLog modules/visual.eselect X-VCS-Directories: / modules/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 612152aacc400899dcb4d42f2c75acd63ae75033 X-VCS-Branch: master Date: Sun, 24 Oct 2021 10:04:36 +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: ab0c7908-1535-4718-8bab-995c5e8cc568 X-Archives-Hash: 0c6511ba35e48b19173c9b39c184e588 commit: 612152aacc400899dcb4d42f2c75acd63ae75033 Author: Ulrich Müller gentoo org> AuthorDate: Sun Oct 24 10:03:31 2021 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Oct 24 10:03:31 2021 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=612152aa Don't use absolute paths in visual module * modules/visual.eselect (EDITOR_LIST): Don't use absolute paths. Signed-off-by: Ulrich Müller gentoo.org> ChangeLog | 4 ++++ modules/visual.eselect | 7 ++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index f2ea0b6..dc70d61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2021-10-24 Ulrich Müller + + * modules/visual.eselect (EDITOR_LIST): Don't use absolute paths. + 2021-08-24 Ulrich Müller * libs/package-manager.bash.in (arch): Recognise loongarch*/loong. diff --git a/modules/visual.eselect b/modules/visual.eselect index 00cd835..527793e 100644 --- a/modules/visual.eselect +++ b/modules/visual.eselect @@ -1,14 +1,11 @@ # -*-eselect-*- vim: ft=eselect -# Copyright 2009-2020 Gentoo Authors +# Copyright 2009-2021 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="/bin/nano - /usr/bin/emacs - /usr/bin/vi - /usr/bin/xemacs" +EDITOR_LIST="nano emacs vi xemacs" inherit editor-variable