diff options
author | Robby Russell <robby@planetargon.com> | 2015-08-12 21:01:42 -0700 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2015-08-12 21:01:42 -0700 |
commit | c45fff1f81f16a8c41a0576676642b084e727348 (patch) | |
tree | 9432a7ddc458324887a13d0b5259ca011b25f24c /plugins | |
parent | d1ea849fddab1f9c82137bff93c87cc46be26769 (diff) | |
parent | 2449e41248f03f4313e67294883cb928d597ad27 (diff) | |
download | zsh-c45fff1f81f16a8c41a0576676642b084e727348.tar.gz zsh-c45fff1f81f16a8c41a0576676642b084e727348.tar.bz2 zsh-c45fff1f81f16a8c41a0576676642b084e727348.zip |
Merge pull request #2367 from andrew-dwyer/n98-magerun
New plugin for the n98-magerun Magento command line tool
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/n98-magerun/n98-magerun.plugin.zsh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/plugins/n98-magerun/n98-magerun.plugin.zsh b/plugins/n98-magerun/n98-magerun.plugin.zsh new file mode 100755 index 000000000..bfcf27b98 --- /dev/null +++ b/plugins/n98-magerun/n98-magerun.plugin.zsh @@ -0,0 +1,34 @@ +# ------------------------------------------------------------------------------ +# FILE: n98-magerun.plugin.zsh +# DESCRIPTION: oh-my-zsh n98-magerun plugin file. Adapted from composer plugin +# AUTHOR: Andrew Dwyer (andrewrdwyer at gmail dot com) +# VERSION: 1.0.0 +# ------------------------------------------------------------------------------ + +# n98-magerun basic command completion +_n98_magerun_get_command_list () { + $_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z\-:]+/ { print $1 }' +} + + +_n98_magerun () { + _arguments '1: :->command' '*:optional arg:_files' + + case $state in + command) + compadd $(_n98_magerun_get_command_list) + ;; + *) + esac +} + +compdef _n98_magerun n98-magerun.phar +compdef _n98_magerun n98-magerun + +# Aliases +alias n98='n98-magerun.phar' +alias mage='n98-magerun.phar' +alias magefl='n98-magerun.phar cache:flush' + +# Install n98-magerun into the current directory +alias mage-get='wget https://raw.github.com/netz98/n98-magerun/master/n98-magerun.phar' |