agent: Update message editor placeholder for Codex (#40264)

This commit is contained in:
Danilo Leal
2025-10-15 14:25:36 -03:00
committed by GitHub
parent bb0cc1059c
commit ecb016081a
+4 -1
View File
@@ -335,7 +335,10 @@ impl AcpThreadView {
let placeholder = if agent.name() == "Zed Agent" {
format!("Message the {} — @ to include context", agent.name())
} else if agent.name() == "Claude Code" || !available_commands.borrow().is_empty() {
} else if agent.name() == "Claude Code"
|| agent.name() == "Codex"
|| !available_commands.borrow().is_empty()
{
format!(
"Message {} — @ to include context, / for commands",
agent.name()