Overview
Comment: | fish: Only use color ls if available |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
831ff3f6e35af23db8e1f8d85c7e2afc |
User & Date: | js 2022-11-27 15:02:44 |
Context
2022-11-27
| ||
23:03 | Set MAKEFLAGS on NetBSD check-in: 25e0ed3529 user: js tags: trunk | |
15:02 | fish: Only use color ls if available check-in: 831ff3f6e3 user: js tags: trunk | |
14:58 | fish: Alias gpg to gpg2 check-in: bab44182da user: js tags: trunk | |
Changes
Changes to fish/functions/ls.fish.
|
| < | > | > > | 1 2 3 4 5 6 7 8 9 | 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 |