mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-07-15 06:01:26 +02:00
unposted: correct completion argument order for dkms
This commit is contained in:
parent
ab8a1a5824
commit
e104d0a6fe
2 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,8 @@
|
|||
2018-08-28 Oliver Kiddle <okiddle@yahoo.co.uk>
|
||||
|
||||
* unposted: Completion/Linux/Command/_dkms: correct
|
||||
completion argument order
|
||||
|
||||
* unposted: Completion/Unix/Command/_strings: completion for
|
||||
argument to -s was missing
|
||||
|
||||
|
|
|
@ -122,13 +122,13 @@ case $cmd in
|
|||
;|
|
||||
add)
|
||||
args+=(
|
||||
'2:path:_directories'
|
||||
'3:tarball:_files -g "*.tar(-.)"'
|
||||
'3:path:_directories'
|
||||
'4:tarball:_files -g "*.tar(-.)"'
|
||||
)
|
||||
;;
|
||||
install)
|
||||
args+=(
|
||||
'2:rpm file:_files -g "*.rpm(-.)"'
|
||||
'3:rpm file:_files -g "*.rpm(-.)"'
|
||||
)
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue