mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
7 lines
193 B
Fish
7 lines
193 B
Fish
|
# Use colours in diff output, if supported
|
||
|
if command -vq diff; and command diff --color=auto /dev/null{,} >/dev/null 2>&1
|
||
|
function diff
|
||
|
command diff --color=auto $argv
|
||
|
end
|
||
|
end
|