diff --git a/crates/chat-cli/src/cli/chat/mod.rs b/crates/chat-cli/src/cli/chat/mod.rs index a7937de749..753465111d 100644 --- a/crates/chat-cli/src/cli/chat/mod.rs +++ b/crates/chat-cli/src/cli/chat/mod.rs @@ -207,15 +207,15 @@ const SMALL_SCREEN_WECLOME_TEXT: &str = color_print::cstr! {" "}; const ROTATING_TIPS: [&str; 9] = [ - color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run q settings chat.enableNotifications true"}, color_print::cstr! {"You can use /editor to edit your prompt with a vim-like experience"}, + color_print::cstr! {"/usage shows you a visual breakdown of your current context window usage"}, + color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run q settings chat.enableNotifications true"}, color_print::cstr! {"You can execute bash commands by typing ! followed by the command"}, color_print::cstr! {"Q can use tools without asking for confirmation every time. Give /tools trust a try"}, color_print::cstr! {"You can programmatically inject context to your prompts by using hooks. Check out /context hooks help"}, color_print::cstr! {"You can use /compact to replace the conversation history with its summary to free up the context space"}, - color_print::cstr! {"/usage shows you a visual breakdown of your current context window usage"}, color_print::cstr! {"If you want to file an issue to the Q CLI team, just tell me, or run q issue"}, - color_print::cstr! {"You can enable custom tools with MCP servers. Learn more with /help"}, + color_print::cstr! {"You can enable custom tools with MCP servers. Learn more with /help"}, ]; const GREETING_BREAK_POINT: usize = 67;