Skip to content

Commit

Permalink
Fix zsh completion scripts
Browse files Browse the repository at this point in the history
This fix completion when argument startswith -
And prevent completing a space when no candidates
  • Loading branch information
zhsj committed Feb 9, 2020
1 parent 7a5ed48 commit 5fafb3e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions autocomplete/zsh_autocomplete
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@
_cli_zsh_autocomplete() {

local -a opts
opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} --generate-bash-completion)}")
local cur
cur=${words[-1]}
if [[ "$cur" == "-"* ]]; then
opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} ${cur} --generate-bash-completion)}")
else
opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} --generate-bash-completion)}")
fi

_describe 'values' opts
if [[ "${opts[1]}" != "" ]]; then
_describe 'values' opts
fi

return
}
Expand Down

0 comments on commit 5fafb3e

Please sign in to comment.