agent: Update message editor placeholder (#37441)

Release Notes:

- N/A
This commit is contained in:
Danilo Leal
2025-09-03 06:54:31 -03:00
committed by GitHub
parent c446662862
commit 9a8c5053c2
+5
View File
@@ -332,6 +332,11 @@ 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() {
format!(
"Message {} — @ to include context, / for commands",
agent.name()
)
} else {
format!("Message {} — @ to include context", agent.name())
};