summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2012-10-09 06:42:27 -0700
committerRobby Russell <robby@planetargon.com>2012-10-09 06:42:27 -0700
commitc2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9 (patch)
treee33f494f2a7872d2eca3f40a9c48e64e6e71a228
parentd4d2e6d659fcfd3e5eec73f4024a3bb645c76ede (diff)
parent9365fd03f62854c48bc06388542ba4933eb067db (diff)
downloadzsh-c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9.tar.gz
zsh-c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9.tar.bz2
zsh-c2ae9e09ca1f33ff1e13e629a0b2e6bdd19f83a9.zip
Merge pull request #1344 from danielcsgomes/master
Added Composer Plugin and Symfony2 alias
-rw-r--r--plugins/composer/composer.plugin.zsh29
-rw-r--r--plugins/symfony2/symfony2.plugin.zsh6
2 files changed, 34 insertions, 1 deletions
diff --git a/plugins/composer/composer.plugin.zsh b/plugins/composer/composer.plugin.zsh
new file mode 100644
index 000000000..c9b762d07
--- /dev/null
+++ b/plugins/composer/composer.plugin.zsh
@@ -0,0 +1,29 @@
+# ------------------------------------------------------------------------------
+# FILE: composer.plugin.zsh
+# DESCRIPTION: oh-my-zsh composer plugin file.
+# AUTHOR: Daniel Gomes (me@danielcsgomes.com)
+# VERSION: 1.0.0
+# ------------------------------------------------------------------------------
+
+# Composer basic command completion
+_composer_get_command_list () {
+ composer --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
+}
+
+_composer () {
+ if [ -f composer.json ]; then
+ compadd `_composer_get_command_list`
+ fi
+}
+
+compdef _composer composer
+
+# Aliases
+alias c='composer'
+alias csu='composer self-update'
+alias cu='composer update'
+alias ci='composer install'
+alias ccp='composer create-project'
+
+# install composer in the current directory
+alias cget='curl -s https://getcomposer.org/installer | php' \ No newline at end of file
diff --git a/plugins/symfony2/symfony2.plugin.zsh b/plugins/symfony2/symfony2.plugin.zsh
index 644266841..223401298 100644
--- a/plugins/symfony2/symfony2.plugin.zsh
+++ b/plugins/symfony2/symfony2.plugin.zsh
@@ -10,4 +10,8 @@ _symfony2 () {
fi
}
-compdef _symfony2 app/console \ No newline at end of file
+compdef _symfony2 app/console
+
+#Alias
+alias sf2='php app/console'
+alias sf2clear='php app/console cache:clear' \ No newline at end of file