homestead.plugin.zsh 257 Bytes
Newer Older
Hosmel Quintana's avatar
Hosmel Quintana committed
1
2
# Homestead basic command completion
_homestead_get_command_list () {
3
  homestead --no-ansi | sed "1,/(Available|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }'
Hosmel Quintana's avatar
Hosmel Quintana committed
4
5
6
7
8
9
10
}

_homestead () {
  compadd `_homestead_get_command_list`
}

compdef _homestead homestead