symfony2.plugin.zsh 475 Bytes
Newer Older
Andrew Tch's avatar
Andrew Tch committed
1
2
3
4
5
6
7
8
9
10
11
12
# Symfony2 basic command completion

_symfony2_get_command_list () {
	app/console --no-ansi | sed "1,/Available commands/d" | awk '/^  [a-z]+/ { print $1 }'
}

_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
17
18
19
20
alias sfc='php app/console'
alias sfcl='php app/console cache:clear'
alias sfcroute='php app/console router:debug'
alias sfcgb='php app/console generate:bundle'
Rui Marinho's avatar
Rui Marinho committed
21