Update copy (#1935)

Updated copy

---------

Co-authored-by: pap-openai <pap@openai.com>
This commit is contained in:
Ed Bayes
2025-08-07 03:29:33 -07:00
committed by GitHub
parent 5589c6089b
commit 1e4bf81653
10 changed files with 57 additions and 36 deletions

View File

@@ -27,15 +27,15 @@ impl SlashCommand {
/// User-visible description shown in the popup.
pub fn description(self) -> &'static str {
match self {
SlashCommand::New => "Start a new chat",
SlashCommand::Init => "Create an AGENTS.md file with instructions for Codex",
SlashCommand::Compact => "Compact the chat history",
SlashCommand::Quit => "Exit the application",
SlashCommand::Diff => "Show git diff (including untracked files)",
SlashCommand::Status => "Show current session configuration and token usage",
SlashCommand::Logout => "Log out of Codex",
SlashCommand::New => "start a new chat during a conversation",
SlashCommand::Init => "create an AGENTS.md file with instructions for Codex",
SlashCommand::Compact => "summarize conversation to prevent hitting the context limit",
SlashCommand::Quit => "exit Codex",
SlashCommand::Diff => "show git diff (including untracked files)",
SlashCommand::Status => "show current session configuration and token usage",
SlashCommand::Logout => "log out of Codex",
#[cfg(debug_assertions)]
SlashCommand::TestApproval => "Test approval request",
SlashCommand::TestApproval => "test approval request",
}
}