commit: 160383299bdd92067f6b7d000523544c32c55f89 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Thu Jun 16 06:57:58 2016 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Thu Jun 16 06:57:58 2016 +0000 URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=16038329
Prefer less to more in pager module. * modules/pager.eselect (EDITOR_LIST): Prefer less to more. * man/pager.eselect.5: Update. ChangeLog | 5 +++++ man/pager.eselect.5 | 6 +++--- modules/pager.eselect | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 087baae..56f76c0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-06-16 Ulrich Müller <[email protected]> + + * modules/pager.eselect (EDITOR_LIST): Prefer less to more. + * man/pager.eselect.5: Update. + 2016-06-01 Ulrich Müller <[email protected]> * configure.ac: Make testing for git repository more robust. diff --git a/man/pager.eselect.5 b/man/pager.eselect.5 index 9f5169d..8121811 100644 --- a/man/pager.eselect.5 +++ b/man/pager.eselect.5 @@ -2,7 +2,7 @@ .\" Copyright 2009-2016 Gentoo Foundation .\" Distributed under the terms of the GNU GPL version 2 or later .\" -.TH pager.eselect 5 "September 2012" "Gentoo Linux" eselect +.TH pager.eselect 5 "June 2016" "Gentoo Linux" eselect .SH NAME pager.eselect \- The PAGER management module for Gentoo's eselect .SH SYNOPSIS @@ -32,8 +32,8 @@ variable. .br Available targets for the PAGER variable: .br - [1] /bin/more * - [2] /usr/bin/less + [1] /usr/bin/less + [2] /bin/more * [ ] (free form) .SH ACTION: SET .B eselect pager set diff --git a/modules/pager.eselect b/modules/pager.eselect index c4879e9..a0596e8 100644 --- a/modules/pager.eselect +++ b/modules/pager.eselect @@ -4,7 +4,7 @@ EDITOR_VAR="PAGER" EDITOR_ENVFILE="/etc/env.d/99pager" -EDITOR_LIST="/bin/more /usr/bin/less /usr/bin/most" +EDITOR_LIST="/usr/bin/less /bin/more /usr/bin/most" inherit editor-variable
