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