Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions crates/chat-cli/src/cli/chat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <green!>q settings chat.enableNotifications true</green!>"},
color_print::cstr! {"You can use <green!>/editor</green!> to edit your prompt with a vim-like experience"},
color_print::cstr! {"<green!>/usage</green!> shows you a visual breakdown of your current context window usage"},
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
color_print::cstr! {"You can execute bash commands by typing <green!>!</green!> followed by the command"},
color_print::cstr! {"Q can use tools without asking for confirmation every time. Give <green!>/tools trust</green!> a try"},
color_print::cstr! {"You can programmatically inject context to your prompts by using hooks. Check out <green!>/context hooks help</green!>"},
color_print::cstr! {"You can use <green!>/compact</green!> to replace the conversation history with its summary to free up the context space"},
color_print::cstr! {"<green!>/usage</green!> 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 <green!>q issue</green!>"},
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with /help"},
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with <green!>/help</green!>"},
];

const GREETING_BREAK_POINT: usize = 67;
Expand Down
Loading