mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-06 10:08:47 +00:00
73a9c8bcb8
darcs-hash:20060208092005-ac50b-8e784f79a4e158c8c15b553fad85002dccc7bd03.gz
18 lines
433 B
Fish
18 lines
433 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
|
|
|