symfony2.plugin.zsh 528 Bytes
Newer Older
Andrew Tch's avatar
Andrew Tch committed
1
2
3
# Symfony2 basic command completion

_symfony2_get_command_list () {
4
	php app/console --no-ansi | sed "1,/Available commands/d" | awk '/^  [a-z]+/ { print $1 }'
Andrew Tch's avatar
Andrew Tch committed
5
6
7
8
9
10
11
12
}

_symfony2 () {
  if [ -f app/console ]; then
    compadd `_symfony2_get_command_list`
  fi
}

13
compdef _symfony2 app/console
Rui Marinho's avatar
Rui Marinho committed
14
compdef _symfony2 sf
15
16

#Alias
lesmyrmidons's avatar
lesmyrmidons committed
17
alias sf='php app/console'
18
alias sfcl='php app/console cache:clear'
lesmyrmidons's avatar
lesmyrmidons committed
19
alias sfroute='php app/console router:debug'
20
alias sfcontainer='php app/console container:debug'
lesmyrmidons's avatar
lesmyrmidons committed
21
alias sfgb='php app/console generate:bundle'
Rui Marinho's avatar
Rui Marinho committed
22