tom-doerr / zsh_codex

This is a ZSH plugin that enables you to use OpenAI's Codex AI in the command line.
MIT License
1.35k stars 62 forks source link

Remove prompt prefix from completion result #30

Closed coffebar closed 10 months ago

coffebar commented 10 months ago

When I write "# commit dotfiles" and press C-x, my terminal looks like this:

➜  ~ # commit dotfiles
#!/bin/zsh

# commit dotfiles
git add . && git commit -m "Update dotfiles"

If you merge this PR, it will look like this:

➜  ~ # commit dotfiles
git add . && git commit -m "Update dotfiles"
tom-doerr commented 10 months ago

Thank you! Good idea to limit the replace count to 1