mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-16 06:54:03 +00:00
__fish_anypager: prefer less over other pagers
This is our traditional behavior; "man" and "git" do the same.
(cherry picked from commit b83f3b0e98
)
Proposing this for 3.7.1 because I think see this as regression in 3.7.0 -
a user might have installed bat for syntax highlighting only.
This commit is contained in:
parent
c31e194120
commit
47bb07eda3
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ function __fish_anypager --description "Print a pager to use"
|
|||
end
|
||||
|
||||
# Cheesy hardcoded list of pagers.
|
||||
for cmd in bat lv most less more
|
||||
for cmd in less bat lv most more
|
||||
if command -q $cmd
|
||||
echo -- $cmd
|
||||
return 0
|
||||
|
|
Loading…
Reference in a new issue