-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathzsh_codex.plugin.zsh
30 lines (24 loc) · 983 Bytes
/
zsh_codex.plugin.zsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/zsh
# This ZSH plugin reads the text from the current buffer
# and uses a Python script to complete the text.
api="openai"
_ZSH_CODEX_REPO=$(dirname $0)
create_completion() {
# Get the text typed until now.
local text=$BUFFER
if [[ "$ZSH_CODEX_PREEXECUTE_COMMENT" == "true" ]]; then
text="$(echo -n "echo \"$text\"" | zsh)"
fi
local ZSH_CODEX_PYTHON="${ZSH_CODEX_PYTHON:-python3}"
local completion=$(echo -n "$text" | $ZSH_CODEX_PYTHON $_ZSH_CODEX_REPO/create_completion.py $CURSOR)
local text_before_cursor=${BUFFER:0:$CURSOR}
local text_after_cursor=${BUFFER:$CURSOR}
# Add completion to the current buffer.
BUFFER="${text_before_cursor}${completion}${text_after_cursor}"
# Put the cursor at the end of the completion
CURSOR=$((CURSOR + ${#completion}))
}
# Bind the create_completion function to a key.
zle -N create_completion
# You may want to add a key binding here, e.g.:
# bindkey '^X^E' create_completion