mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
Merge 54a5236719 into cb64103161
This commit is contained in:
commit
d941c472f5
2 changed files with 25 additions and 0 deletions
11
plugins/codex/README.md
Normal file
11
plugins/codex/README.md
Normal file
|
|
@ -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)
|
||||||
|
```
|
||||||
14
plugins/codex/codex.plugin.zsh
Normal file
14
plugins/codex/codex.plugin.zsh
Normal 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" &|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue