assistant2: Update message editor placeholder (#23363)

Danilo Leal created

To make the mention and keyboard navigability discoverable.

Release Notes:

- N/A

Change summary

crates/assistant2/src/message_editor.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/assistant2/src/message_editor.rs 🔗

@@ -53,7 +53,7 @@ impl MessageEditor {
 
         let editor = cx.new_view(|cx| {
             let mut editor = Editor::auto_height(10, cx);
-            editor.set_placeholder_text("Ask anything…", cx);
+            editor.set_placeholder_text("Ask anything, @ to mention, ↑ to select", cx);
             editor.set_show_indent_guides(false, cx);
 
             editor