mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
590cfa6176
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 = '@';
|