homestead.plugin.zsh 245 Bytes
Newer Older
Hosmel Quintana's avatar
Hosmel Quintana committed
1
2
# Homestead basic command completion
_homestead_get_command_list () {
Pavel Omelchenko's avatar
Pavel Omelchenko committed
3
  homestead --no-ansi | sed "1,/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