mirror of
https://github.com/openai/codex.git
synced 2026-04-25 15:15:15 +00:00
change plaintext plugin-mentions from `$plugin` to `@plugin`, ensure TUI can correctly decode these from history. tested locally, added/updated tests.
5 lines
181 B
Rust
5 lines
181 B
Rust
// Default plaintext sigil for tools.
|
|
pub const TOOL_MENTION_SIGIL: char = '$';
|
|
// Plugins use `@` in linked plaintext outside TUI.
|
|
pub const PLUGIN_TEXT_MENTION_SIGIL: char = '@';
|