Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
07ebfd84
Commit
07ebfd84
authored
Feb 22, 2015
by
Robby Russell
Browse files
Merge pull request #3497 from hsingh23/patch-1
Adds completions to wp-cli plugin
parents
9c0b6430
b2f87648
Changes
1
Show whitespace changes
Inline
Side-by-side
plugins/wp-cli/wp-cli.plugin.zsh
View file @
07ebfd84
...
@@ -136,3 +136,25 @@ alias wpwd='wp widget delete'
...
@@ -136,3 +136,25 @@ alias wpwd='wp widget delete'
alias
wpwl
=
'wp widget list'
alias
wpwl
=
'wp widget list'
alias
wpwm
=
'wp widget move'
alias
wpwm
=
'wp widget move'
alias
wpwu
=
'wp widget update'
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment