ohmyzsh/plugins/codex/codex.plugin.zsh
2026-05-18 23:09:33 +08:00

14 lines
416 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 2> /dev/null >| "$ZSH_CACHE_DIR/completions/_codex" &|