mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 00:40:07 +00:00
commit
c5e8713cf5
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