fix a bug in the fish config (#63)

This commit is contained in:
Matt 2025-08-31 14:27:57 +02:00 committed by GitHub
commit 9e27df38ec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,7 @@
function cat --wraps=bat --description 'alias cat=bat' function cat --wraps=bat --description 'alias cat=bat'
if type -f bat &>/dev/null if type -f bat &>/dev/null; and [ -t 1 ]
bat $argv bat $argv
else else
cat $argv command cat $argv
end end
end end