diff options
author | Marc Cornellà <marc.cornella@live.com> | 2015-11-20 18:07:55 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2015-11-20 18:07:55 +0100 |
commit | 5d8fd93caccd7eb074e27d33bf3c2427745ba299 (patch) | |
tree | 219d14f7f1e4b2096fdcc9f44c0ffbcf345e1865 | |
parent | 7627004a2f06142c6c7a6fc17ab1188fab5bcea7 (diff) | |
parent | 8f823c63715009ef949f72a1bbb0102b472c24cd (diff) | |
download | zsh-5d8fd93caccd7eb074e27d33bf3c2427745ba299.tar.gz zsh-5d8fd93caccd7eb074e27d33bf3c2427745ba299.tar.bz2 zsh-5d8fd93caccd7eb074e27d33bf3c2427745ba299.zip |
Merge pull request #4617 from ahmadawais/patch-1
Removed Similar Aliases
-rw-r--r-- | plugins/wp-cli/README.md | 4 | ||||
-rw-r--r-- | plugins/wp-cli/wp-cli.plugin.zsh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/wp-cli/README.md b/plugins/wp-cli/README.md index 6dda07d17..1a79d60fc 100644 --- a/plugins/wp-cli/README.md +++ b/plugins/wp-cli/README.md @@ -43,7 +43,7 @@ WP-CLI is a set of command-line tools for managing WordPress installations. You - wpps='search' - wppst='status' - wppt='toggle' -- wppu='uninstall' +- wppun='uninstall' - wppu='update' ### Post @@ -55,7 +55,7 @@ WP-CLI is a set of command-line tools for managing WordPress installations. You - wppol='wp post list' - wppom='wp post meta' - wppou='wp post update' -- wppou='wp post url' +- wppourl='wp post url' ### Sidebar - wpsbl='wp sidebar list' diff --git a/plugins/wp-cli/wp-cli.plugin.zsh b/plugins/wp-cli/wp-cli.plugin.zsh index 6c70a7a09..7b41c3257 100644 --- a/plugins/wp-cli/wp-cli.plugin.zsh +++ b/plugins/wp-cli/wp-cli.plugin.zsh @@ -63,7 +63,7 @@ alias wppp='wp plugin path' alias wpps='wp plugin search' alias wppst='wp plugin status' alias wppt='wp plugin toggle' -alias wppu='wp plugin uninstall' +alias wppun='wp plugin uninstall' alias wppu='wp plugin update' # Post @@ -75,7 +75,7 @@ alias wppog='wp post get' alias wppol='wp post list' alias wppom='wp post meta' alias wppou='wp post update' -alias wppou='wp post url' +alias wppourl='wp post url' # Rewrite |