Added oh-my-zsh in all its glory

This commit is contained in:
2018-10-16 21:57:25 +02:00
parent 226726f5a8
commit c8fe9b52f0
616 changed files with 49532 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
# symfony basic command completion
_symfony_get_command_list () {
php symfony | sed "1,/Available tasks/d" | awk 'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^ :[a-z]+/ { print cat $1; }'
}
_symfony () {
if [ -f symfony ]; then
compadd `_symfony_get_command_list`
fi
}
compdef _symfony symfony