From 54a5236719f87475541c331bad189acbc06a9984 Mon Sep 17 00:00:00 2001 From: Runrioter Date: Mon, 18 May 2026 23:09:33 +0800 Subject: [PATCH] feat(codex): add plugin for codex --- plugins/codex/README.md | 11 +++++++++++ plugins/codex/codex.plugin.zsh | 14 ++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 plugins/codex/README.md create mode 100644 plugins/codex/codex.plugin.zsh diff --git a/plugins/codex/README.md b/plugins/codex/README.md new file mode 100644 index 000000000..ce46a254a --- /dev/null +++ b/plugins/codex/README.md @@ -0,0 +1,11 @@ +# codex Plugin + +## Introduction + +This `codex` plugin sets up completion for [codex](https://github.com/openai/codex). + +To use it, add `codex` to the plugins array of your zshrc file: + +```bash +plugins=(... codex) +``` diff --git a/plugins/codex/codex.plugin.zsh b/plugins/codex/codex.plugin.zsh new file mode 100644 index 000000000..b5d1ab617 --- /dev/null +++ b/plugins/codex/codex.plugin.zsh @@ -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" &|