mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-19 22:48:26 +08:00
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: carlosala <66907184+carlosala@users.noreply.github.com>
15 lines
428 B
Bash
15 lines
428 B
Bash
# COMPLETION FUNCTION
|
|
if (( ! $+commands[codex] )); then
|
|
return
|
|
fi
|
|
|
|
# If the completion file doesn't exist yet, we need to autoload it and
|
|
# bind it to `codex`. Otherwise, compinit will have already done that.
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_codex" ]]; then
|
|
typeset -g -A _comps
|
|
autoload -Uz _codex
|
|
_comps[codex]=_codex
|
|
fi
|
|
|
|
codex completion zsh < /dev/null 2> /dev/null >| "$ZSH_CACHE_DIR/completions/_codex" &|
|