mirror of
https://codeberg.org/hyperreal/dotfiles
synced 2024-11-02 01:03:07 +01:00
8 lines
192 B
Fish
8 lines
192 B
Fish
|
function batfun -d "Display function definition with bat"
|
||
|
if type -q bat
|
||
|
command bat (functions -D $argv[1])
|
||
|
else
|
||
|
command echo "bat program not installed!"
|
||
|
end
|
||
|
end
|