mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Laravel 5 support
This commit is contained in:
parent
5ee54032da
commit
7c73a3aea4
2 changed files with 21 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
# Laravel4 basic command completion
|
||||
_laravel4_get_command_list () {
|
||||
php artisan --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
|
||||
php artisan --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z]+/ { print $1 }'
|
||||
}
|
||||
|
||||
_laravel4 () {
|
||||
|
|
20
plugins/laravel5/laravel5.plugin.zsh
Normal file
20
plugins/laravel5/laravel5.plugin.zsh
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Laravel5 basic command completion
|
||||
_laravel5_get_command_list () {
|
||||
php artisan --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z]+/ { print $1 }'
|
||||
}
|
||||
|
||||
_laravel5 () {
|
||||
if [ -f artisan ]; then
|
||||
compadd `_laravel5_get_command_list`
|
||||
fi
|
||||
}
|
||||
|
||||
compdef _laravel5 artisan
|
||||
compdef _laravel5 la5
|
||||
|
||||
#Alias
|
||||
alias la5='php artisan'
|
||||
|
||||
alias la5dump='php artisan dump-autoload'
|
||||
alias la5cache='php artisan cache:clear'
|
||||
alias la5routes='php artisan routes'
|
Loading…
Reference in a new issue