scripts/completions/_submit-patches.zsh
Anna Schumaker 0fed27b109 submit-patches.zsh: Greatly improve the script
Take a command line option for who to send to, rather than relying on
having the proper variable set or commented out. Also, add some tab
completion.

Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
2022-05-16 17:02:29 -04:00

10 lines
267 B
Bash

#compdef submit-patches.zsh
function _submit-patches.zsh() {
_arguments \
--nfs'[submit to nfs maintainers]' \
--nfsd'[submit to nfsd maintainers]' \
--nfsutils'[submit to nfs-utils maintainers]' \
{--xfstests,--fstests}'[submit to xfstests maintainers]'
}