Merge pull request #6387 from VilledeMontreal/feat-v3/compFuncName

v3: Fix debug printouts for zsh completion
This commit is contained in:
Matt Farina 2019-09-11 15:16:22 -04:00 committed by GitHub
commit a86eecede4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -213,6 +213,7 @@ __helm_convert_bash_to_zsh() {
-e "s/${LWORD}declare${RWORD}/__helm_declare/g" \
-e "s/\\\$(type${RWORD}/\$(__helm_type/g" \
-e 's/aliashash\["\(.\{1,\}\)"\]/aliashash[\1]/g' \
-e 's/FUNCNAME/funcstack/g' \
<<'BASH_COMPLETION_EOF'
`
out.Write([]byte(zshInitialization))