mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-01-31 13:52:50 +08:00
e6e287ae1f
darcs-hash:20060215175925-ac50b-5dc52c615650779771a6c4a3c5d006b72dbca67d.gz
19 lines
441 B
Fish
19 lines
441 B
Fish
#
|
|
# Make ls use colors if we are on a system that supports this
|
|
#
|
|
|
|
if ls --version 1>/dev/null 2>/dev/null
|
|
# This is GNU ls
|
|
function ls -d (_ "List contents of directory")
|
|
command ls --color=auto --indicator-style=classify $argv
|
|
end
|
|
else
|
|
# BSD, OS X and a few more support colors through the -G switch instead
|
|
if ls / -G 1>/dev/null 2>/dev/null
|
|
function ls -d (_ "List contents of directory")
|
|
command ls -G $argv
|
|
end
|
|
end
|
|
end
|
|
|