Artifact 2407695fb901c98cd358cb15faa5d95622bcddf6a9ff388fa8f6c494b12683a9:
- File config/fish/functions/ls.fish — part of check-in [09fe98aab3] at 2020-01-21 00:11:28 on branch trunk — Add fish config (user: js, size: 160) [annotate] [blame] [check-ins using]
function ls --description 'List contents of directory' if which gls >/dev/null command gls --color=auto $argv else command ls --color=auto $argv end end