2019-01-12 15:47:23 +00:00
|
|
|
# Homestead basic command completion
|
|
|
|
_homestead_get_command_list () {
|
2019-10-24 19:09:05 +00:00
|
|
|
homestead --no-ansi | sed -E "1,/(Available|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }'
|
2019-01-12 15:47:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_homestead () {
|
|
|
|
compadd `_homestead_get_command_list`
|
|
|
|
}
|
|
|
|
|
|
|
|
compdef _homestead homestead
|