Squashed 'oh-my-zsh/' content from commit 550ccca
git-subtree-dir: oh-my-zsh git-subtree-split: 550ccca91cb45fcf26a8f2c3c60da675b995e3f3
This commit is contained in:
26
plugins/symfony2/symfony2.plugin.zsh
Normal file
26
plugins/symfony2/symfony2.plugin.zsh
Normal file
@@ -0,0 +1,26 @@
|
||||
# Symfony2 basic command completion
|
||||
|
||||
_symfony_console () {
|
||||
echo "php $(find . -maxdepth 2 -mindepth 1 -name 'console' -type f | head -n 1)"
|
||||
}
|
||||
|
||||
_symfony2_get_command_list () {
|
||||
`_symfony_console` --no-ansi | sed "1,/Available commands/d" | awk '/^ ?[a-z]+/ { print $1 }'
|
||||
}
|
||||
|
||||
_symfony2 () {
|
||||
compadd `_symfony2_get_command_list`
|
||||
}
|
||||
|
||||
compdef _symfony2 '`_symfony_console`'
|
||||
compdef _symfony2 'app/console'
|
||||
compdef _symfony2 'bin/console'
|
||||
compdef _symfony2 sf
|
||||
|
||||
#Alias
|
||||
alias sf='`_symfony_console`'
|
||||
alias sfcl='sf cache:clear'
|
||||
alias sfcw='sf cache:warmup'
|
||||
alias sfroute='sf router:debug'
|
||||
alias sfcontainer='sf container:debug'
|
||||
alias sfgb='sf generate:bundle'
|
||||
Reference in New Issue
Block a user