From 50f982f6e3ffd78338d2b7d51dd3659062065a90 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Tue, 21 Nov 2023 19:47:41 +0000 Subject: [PATCH] fix(zsh): must 'compinit' before 'compdef' --- webi/webi.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/webi/webi.sh b/webi/webi.sh index fb865aa..edfab8b 100755 --- a/webi/webi.sh +++ b/webi/webi.sh @@ -356,6 +356,7 @@ webi_shell_init() { ( echo ' _describe -t commands "command" completions && ret=0' echo '}' echo '' + echo 'autoload -Uz compinit && compinit' echo 'compdef _webi webi' } ;;