1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-12-08 06:21:40 +01:00

unposted: correct completion argument order for dkms

This commit is contained in:
Oliver Kiddle 2018-08-28 17:37:14 +02:00
parent ab8a1a5824
commit e104d0a6fe
2 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,8 @@
2018-08-28 Oliver Kiddle <okiddle@yahoo.co.uk> 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 * unposted: Completion/Unix/Command/_strings: completion for
argument to -s was missing argument to -s was missing

View file

@ -122,13 +122,13 @@ case $cmd in
;| ;|
add) add)
args+=( args+=(
'2:path:_directories' '3:path:_directories'
'3:tarball:_files -g "*.tar(-.)"' '4:tarball:_files -g "*.tar(-.)"'
) )
;; ;;
install) install)
args+=( args+=(
'2:rpm file:_files -g "*.rpm(-.)"' '3:rpm file:_files -g "*.rpm(-.)"'
) )
;; ;;
esac esac