You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(config)!: support model option and improved UI behavior (#8)
* chore(ci): removed old branch ref
* feat(config): added ability to define model and fixed borders
- `model` opt is now passed to the `-m` flag of the Codex CLI
- Single border style no longer duplicates "rounded"
* chore(tests): moved files to avoid running full Plenary suite
* chore(readme): updated README.md with new config documentation
* fix(ui)!: resolved multiple buffer open/close issues
- BREAKING CHANGE: Buffer toggle is now <q> instead of <Esc>
This avoids conflict with the Codex CLI's newer interrupt sequence (<Esc><Esc>)
- Buffer now backgrounds smoothly with no delay
* feat(tests): added model option tests
Copy file name to clipboardExpand all lines: README.md
+18-8Lines changed: 18 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
## A Neovim plugin integrating the open-sourced Codex CLI (`codex`).
5
5
> Latest version: 
6
6
7
+
Note: As of v1.0.0, <Esc> no longer closes the Codex window. Press q to close, and <Esc><Esc> to safely interrupt model generation without resetting context.
8
+
7
9
### Features:
8
10
- ✅ Toggle Codex floating window with `:CodexToggle`
require('codex').status() -- drop in to your lualine sections
57
61
```
62
+
63
+
### Configuration:
64
+
- All plugin configurations can be seen in the `opts` table of the plugin setup, as shown in the installation section.
65
+
66
+
-**For deeper customization, please refer to the [Codex CLI documentation](https://github.com/openai/codex?tab=readme-ov-file#full-configuration-example) full configuration example. These features change quickly as Codex CLI is in active beta development.*
0 commit comments