mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Adds completions to wp-cli plugin
This commit is contained in:
parent
c78277fd8b
commit
b2f8764855
1 changed files with 22 additions and 0 deletions
|
@ -136,3 +136,25 @@ alias wpwd='wp widget delete'
|
|||
alias wpwl='wp widget list'
|
||||
alias wpwm='wp widget move'
|
||||
alias wpwu='wp widget update'
|
||||
|
||||
|
||||
autoload -U +X bashcompinit && bashcompinit
|
||||
# bash completion for the `wp` command
|
||||
|
||||
_wp_complete() {
|
||||
local cur=${COMP_WORDS[COMP_CWORD]}
|
||||
|
||||
IFS=$'\n'; # want to preserve spaces at the end
|
||||
local opts="$(wp cli completions --line="$COMP_LINE" --point="$COMP_POINT")"
|
||||
|
||||
if [[ "$opts" =~ \<file\>\s* ]]
|
||||
then
|
||||
COMPREPLY=( $(compgen -f -- $cur) )
|
||||
elif [[ $opts = "" ]]
|
||||
then
|
||||
COMPREPLY=( $(compgen -f -- $cur) )
|
||||
else
|
||||
COMPREPLY=( ${opts[*]} )
|
||||
fi
|
||||
}
|
||||
complete -o nospace -F _wp_complete wp
|
||||
|
|
Loading…
Reference in a new issue