Fix dad completion

- remove needless colon
This commit is contained in:
Shohei YOSHIDA 2026-03-08 22:08:22 +09:00
parent 047e1a84fd
commit 324622c0d7
No known key found for this signature in database
GPG Key ID: C9A1BB11BB940CF2
1 changed files with 4 additions and 4 deletions

View File

@ -55,12 +55,12 @@ _dad() {
"-u[Set aria2c username]:username:->val" \ "-u[Set aria2c username]:username:->val" \
"-p[Set aria2c password]:password:->val" \ "-p[Set aria2c password]:password:->val" \
'1:cmd:->cmds' \ '1:cmd:->cmds' \
'*: : :->args' '*: :->args'
case "$state" in case "$state" in
(cmds) (cmds)
_describe -t commands 'commands' commands _describe -t commands 'commands' commands
;; ;;
esac esac
} }