feat(codex): add plugin (#13757)

This commit is contained in:
Runrioter Wung
2026-08-07 16:58:15 +08:00
committed by GitHub
parent 069512d14a
commit 6f39351fef
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
# 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" &|