You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When I run comfy --install-completion or comfy --install-completion zsh, the command inject the following into the zshrc and ~/.zfunc/
autoload -Uz compinit
zstyle ':completion:*' menu select
fpath+=~/.zfunc
autoload -Uz compinit
# Define custom completion for comfy
# Ensure that _comfy_completion is defined after compinit
_comfy_completion() {
eval $(env _TYPER_COMPLETE_ARGS="${words[1,$CURRENT]}" _COMFY_COMPLETE=complete_zsh comfy)
}
# Bind the completion function to the comfy command
compdef _comfy_completion comfy
# Other configurations (e.g., aliases, prompt, etc.)
zstyle ':completion:*' menu select
Describe the bug
When I run
comfy --install-completion
orcomfy --install-completion zsh
, the command inject the following into the zshrc and ~/.zfunc/~/.zfunc/_comfy
However, it doesn't actually autocomplete even after restarting the terminal
Expected behavior
Autocomplete
Nice to have
TAB
The text was updated successfully, but these errors were encountered: