diff options
author | Pavel Omelchenko <p.omelchenko@gmail.com> | 2019-08-24 01:00:08 +0300 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-08-24 00:00:08 +0200 |
commit | 08beebd89f9eec956c126c732a287ec5a5a197a8 (patch) | |
tree | 5668412867bb24831e49e07dd5a7008608cf5cbf /plugins/homestead/homestead.plugin.zsh | |
parent | d6fc6edb29a0dc9c91b8a1ad7b4db4c235420b08 (diff) | |
download | zsh-08beebd89f9eec956c126c732a287ec5a5a197a8.tar.gz zsh-08beebd89f9eec956c126c732a287ec5a5a197a8.tar.bz2 zsh-08beebd89f9eec956c126c732a287ec5a5a197a8.zip |
homestead: repair sed regex (#8103)
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 b9940dbcf..ea2803d77 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|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }' + homestead --no-ansi | sed -E "1,/(Available|Common) commands/d" | awk '/^ +[a-z]+/ { print $1 }' } _homestead () { |