Fix regexp which collects subcommands

fix: https://github.com/zsh-users/zsh-completions/issues/677
This commit is contained in:
Shohei YOSHIDA 2020-03-24 01:37:45 +09:00
parent ed0c7a75df
commit d9690b1a67
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@
# ------- # -------
# #
# * Peter Eisentraut (https://github.com/petere) # * Peter Eisentraut (https://github.com/petere)
# * Shohei YOSHIDA (https://github.com/syohex)
# #
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
@ -67,7 +68,7 @@ _kitchen() {
_kitchen_commands() { _kitchen_commands() {
local commands local commands
commands=("${(@f)$(_call_program commands $service help | sed -n 's/^ kitchen \([[:alpha:]]*\) [ [].*# \(.*\)$/\1:\2/p')}") commands=("${(@f)$(_call_program commands $service help | sed -n 's/^ kitchen \([[:alpha:]]*\) .*# \(.*\)$/\1:\2/p')}")
_describe -t commands 'kitchen commands' commands _describe -t commands 'kitchen commands' commands
} }