1
0
Fork 0
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:
Oliver Kiddle 2021-11-12 22:00:10 +01:00
parent 2fe9ab2813
commit 9c515a5a2f
2 changed files with 4 additions and 1 deletions

View file

@ -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

View file

@ -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' )
;|