diff options
author | Oliver Kiddle <okiddle@yahoo.co.uk> | 2019-05-09 00:17:04 +0200 |
---|---|---|
committer | Oliver Kiddle <okiddle@yahoo.co.uk> | 2019-05-09 00:17:04 +0200 |
commit | 09c6acf7b23f6ea6af6c5ac9cce18aa1afc49aa7 (patch) | |
tree | 601415774d4ab34958807bc0872322d9062a59a0 /Completion/Unix/Command/_ls | |
parent | ffacb17886e8071332c0b1dc8263e7dbe6af268a (diff) | |
download | zsh-09c6acf7b23f6ea6af6c5ac9cce18aa1afc49aa7.tar.gz zsh-09c6acf7b23f6ea6af6c5ac9cce18aa1afc49aa7.tar.xz zsh-09c6acf7b23f6ea6af6c5ac9cce18aa1afc49aa7.zip |
44279: completion updates for Dragonfly 5.4, FreeBSD 12 and OpenBSD 6.5
Diffstat (limited to 'Completion/Unix/Command/_ls')
-rw-r--r-- | Completion/Unix/Command/_ls | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_ls b/Completion/Unix/Command/_ls index cedea1de9..1fd9383f5 100644 --- a/Completion/Unix/Command/_ls +++ b/Completion/Unix/Command/_ls @@ -81,10 +81,14 @@ if ! _pick_variant gnu=gnu unix --help; then if [[ $OSTYPE = (dragonfly*|freebsd*) ]]; then arguments+=( '(-A)-I[prevent -A from being automatically set for the super-user]' + '(-1 -C -m -x)-D+[specify format for date]:format: _date_formats' ) fi if [[ $OSTYPE = dragonfly* ]]; then - arguments+=( '-y[display FSMID in long listing]' ) + arguments+=( + '-_[use GMT based date and time output with nanotime timestamp]' + '-y[display FSMID in long listing]' + ) fi if [[ $OSTYPE = (freebsd*|darwin*) ]]; then arguments+=( '(-c -u)-U[file creation time]' ) @@ -92,9 +96,9 @@ if ! _pick_variant gnu=gnu unix --help; then if [[ $OSTYPE = freebsd* ]]; then arguments+=( '-,[print file sizes grouped and separated by thousands]' - '-D+[specify format for date]:format: _date_formats' '-y[with -t, sort filenames in the same order as the time]' '-Z[display MAC label]' + '--color=-[control use of color]:color:(never always auto)' ) fi if [[ $OSTYPE = darwin* ]]; then |