2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-28 12:45:13 +00:00
fish-shell/share/functions/diff.fish

6 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