Now Artisan autocompletion display the text helper for each command

This commit is contained in:
Yohan Tambè 2016-03-10 10:49:14 +01:00
parent 2082c7573f
commit 196a217413
1 changed files with 12 additions and 2 deletions

View File

@ -35,17 +35,27 @@
# ------- # -------
# #
# * loranger (https://github.com/loranger) # * loranger (https://github.com/loranger)
# * Yohan Tambè (https://github.com/Cronos87)
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
_artisan_get_command_list () { _artisan_get_command_list () {
php artisan --no-ansi | sed "1,/Available commands/d" | awk '/ [a-z]+/ { print $1 }' IFS=" "
php artisan --no-ansi | \
sed "1,/Available commands/d" | \
awk '/ [a-z]+/ { print $1 }' | \
sed -E 's/^[ ]+//g' | \
sed -E 's/[:]+/\\:/g' | \
sed -E 's/[ ]{2,}/\:/g'
} }
_artisan () { _artisan () {
if [ -f artisan ]; then if [ -f artisan ]; then
compadd `_artisan_get_command_list` local -a commands
IFS=$'\n'
commands=(`_artisan_get_command_list`)
_describe 'commands' commands
fi fi
} }