Artifact
9c1f68ea690d85d212bd1d2858355e1d34c97e8e696d6657f0ab4c64868b4eb0:
- File
config/fish/functions/ls.fish
— part of check-in
[bed5a23ae3]
at
2020-02-19 21:46:19
on branch trunk
— Consistent indenting for .fish files
(user:
js
size: 172)
- File
fish/functions/ls.fish
— part of check-in
[24d2eb82f0]
at
2020-02-20 22:07:34
on branch trunk
— Remove useless config subdirectory
(user:
js
size: 172)
function ls --description 'List contents of directory'
if type -q gls
command gls --color=auto $argv
else
command ls --color=auto $argv
end
end