Merge branch 'zsh' of https://github.com/jereksel/cli into jereksel-zsh

main
Dan Buch 8 years ago
commit 1cbb9a7f30
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC

@ -1,5 +1,11 @@
autoload -U compinit && compinit
autoload -U bashcompinit && bashcompinit
_cli_zsh_autocomplete() {
script_dir=$(dirname $0)
source ${script_dir}/bash_autocomplete
local -a opts
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-bash-completion)}")
_describe 'values' opts
return
}
compdef _cli_zsh_autocomplete $PROG

@ -129,7 +129,7 @@ func DefaultAppComplete(c *Context) {
continue
}
for _, name := range command.Names() {
fmt.Fprintln(c.App.Writer, name)
fmt.Fprintf(c.App.Writer, "%s:%s\n", name, command.Usage)
}
}
}

Loading…
Cancel
Save