__fish_anypager: remove bat from default choice

As pointed out in
b83f3b0e98 (commitcomment-146189480)
bat is not actually useful. Also its (monochrome) output is unreadable on
my system.
This commit is contained in:
Johannes Altmanninger 2024-09-14 07:14:22 +02:00
parent 9eeed5ca12
commit 5b04f221a3

View File

@ -17,7 +17,7 @@ function __fish_anypager --description "Print a pager to use"
end
# Cheesy hardcoded list of pagers.
for cmd in less bat lv most more
for cmd in less lv most more
if command -q $cmd
echo -- $cmd
return 0