2018-07-01 11:39:44 -06:00
|
|
|
# Homestead basic command completion
|
|
|
|
|
_homestead_get_command_list () {
|
2019-08-24 01:00:08 +03:00
|
|
|
homestead --no-ansi | sed -E "1,/(Available|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }'
|
2018-07-01 11:39:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_homestead () {
|
|
|
|
|
compadd `_homestead_get_command_list`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compdef _homestead homestead
|