diff options
author | Marc Cornellà <marc.cornella@live.com> | 2019-08-23 13:37:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-23 13:37:28 +0200 |
commit | 3e0e9136ccc768b5fbcaee3a91134dfaa08ffcfa (patch) | |
tree | b9b1c725940abd6a962c227ffc9cc9758a083813 /plugins/homestead/homestead.plugin.zsh | |
parent | de3b14cf69eeb43797bae8320af6972032b604ff (diff) | |
parent | 246e7832ef6f4b77ae998508d0ba90c82961fd0a (diff) | |
download | zsh-3e0e9136ccc768b5fbcaee3a91134dfaa08ffcfa.tar.gz zsh-3e0e9136ccc768b5fbcaee3a91134dfaa08ffcfa.tar.bz2 zsh-3e0e9136ccc768b5fbcaee3a91134dfaa08ffcfa.zip |
homestead: change key string for getting command list (#8008)
Diffstat (limited to 'plugins/homestead/homestead.plugin.zsh')
-rw-r--r-- | plugins/homestead/homestead.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/homestead/homestead.plugin.zsh b/plugins/homestead/homestead.plugin.zsh index cdbc564e4..b9940dbcf 100644 --- a/plugins/homestead/homestead.plugin.zsh +++ b/plugins/homestead/homestead.plugin.zsh @@ -1,6 +1,6 @@ # Homestead basic command completion _homestead_get_command_list () { - homestead --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z]+/ { print $1 }' + homestead --no-ansi | sed "1,/(Available|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }' } _homestead () { |