mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 22:11:54 +02:00
unposted: fix case statement fall-through for ansible-galaxy role completion
This commit is contained in:
parent
2fe9ab2813
commit
9c515a5a2f
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2021-11-12 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* unposted: Completion/Unix/Command/_ansible: fix case statement
|
||||
fall-through for ansible-galaxy role completion
|
||||
|
||||
* 49566: Doc/Zsh/compsys.yo: document the _default function
|
||||
|
||||
* 49564: Completion/Unix/Type/_files, Doc/Zsh/compsys.yo: always
|
||||
|
|
|
@ -278,7 +278,7 @@ case $state in
|
|||
;|
|
||||
role-(info|init|install|list|remove))
|
||||
args+=( '*: :_guard "^-*" "role name"' )
|
||||
;;
|
||||
;|
|
||||
role-(info|search|list|remove|install))
|
||||
args+=( '(-p --roles-path)'{-p,--roles-path}'[specify location of roles]:path:_directories' )
|
||||
;|
|
||||
|
|
Loading…
Reference in a new issue