commit cca30095e0c64d957b4422e4bdd6a067c3b65a3e parent 9b536ce45584456c9a5abe3cceaa78408261f0b0 Author: Sean Enck <sean@ttypty.com> Date: Sat, 7 Dec 2024 15:39:30 -0500 fix zsh completion bug Diffstat:
| M | internal/app/completions/shell/zsh.sh | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/internal/app/completions/shell/zsh.sh b/internal/app/completions/shell/zsh.sh @@ -41,7 +41,8 @@ _{{ $.Executable }}() { case $chosen in "{{ $.HelpCommand }}") if [ "$len" -eq 3 ]; then - compadd "$@" "{{ $.HelpAdvancedCommand }} {{ $.HelpConfigCommand }}" + compadd "$@" "{{ $.HelpAdvancedCommand }}" + compadd "$@" "{{ $.HelpConfigCommand }}" fi ;; "{{ $.InsertCommand }}" | "{{ $.MultiLineCommand }}" | "{{ $.RemoveCommand }}")