configs  Artifact [1a3d96157e]

Artifact 1a3d96157ee8416fb905b6d092240446edec2fd38ce8d6dc23077e1873fb8f56:

  • File fish/functions/ls.fish — part of check-in [831ff3f6e3] at 2022-11-27 15:02:44 on branch trunk — fish: Only use color ls if available (user: js size: 274)

if type -q gls
    function ls --description 'List contents of directory'
        command gls --color=auto $argv
    end
else if command ls --color=auto &>/dev/null
    function ls --description 'List contents of directory'
        command ls --color=auto $argv
    end
end