mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-09 12:21:14 +02:00
47929: complete newer possible values for the sort style
This commit is contained in:
parent
2b2353fc8f
commit
ceb25d9495
2 changed files with 8 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
2021-02-07 Oliver Kiddle <opk@zsh.org>
|
2021-02-07 Oliver Kiddle <opk@zsh.org>
|
||||||
|
|
||||||
|
* 47929: Completion/Zsh/Command/_zstyle: complete newer
|
||||||
|
possible values for the sort style
|
||||||
|
|
||||||
* based on github #62: oxiedi@yandex.ru:
|
* based on github #62: oxiedi@yandex.ru:
|
||||||
Completion/Unix/Type/_date_formats: return proper exit status
|
Completion/Unix/Type/_date_formats: return proper exit status
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ styles=(
|
||||||
show-ambiguity c:
|
show-ambiguity c:
|
||||||
show-completer c:bool
|
show-completer c:bool
|
||||||
single-ignored c:single-ignored
|
single-ignored c:single-ignored
|
||||||
sort c:bool
|
sort c:sort-order
|
||||||
special-dirs c:sdirs
|
special-dirs c:sdirs
|
||||||
squeeze-slashes c:bool
|
squeeze-slashes c:bool
|
||||||
stop c:stop
|
stop c:stop
|
||||||
|
@ -571,6 +571,10 @@ while (( $#state )); do
|
||||||
_message -e separators 'separator string'
|
_message -e separators 'separator string'
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
(sort-order)
|
||||||
|
_wanted sort-orders expl 'sort order' compadd -F line - true false match nosort numeric reverse
|
||||||
|
;;
|
||||||
|
|
||||||
(max-matches-width)
|
(max-matches-width)
|
||||||
_message -e numbers 'maximum display width for matches'
|
_message -e numbers 'maximum display width for matches'
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue