__fish_anypager: prefer less over other pagers

This is our traditional behavior; "man" and "git" do the same.
This commit is contained in:
Johannes Altmanninger 2023-12-17 09:51:25 +01:00
parent 8c555505c0
commit b83f3b0e98

View File

@ -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