From e8ba56e75fbbe1666c526e067c35678d7aee5103 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 0981ed2..9a4aace 100755 --- a/webi/webi.sh +++ b/webi/webi.sh @@ -312,6 +312,7 @@ webi_shell_init() { ( echo ' _describe -t commands "command" completions && ret=0' echo '}' echo '' + echo 'autoload -Uz compinit && compinit' echo 'compdef _webi webi' } ;;