Skip to content

Commit e5266f2

Browse files
authored
fix: rotating tip coloring and ordering (#1744)
1 parent 552d052 commit e5266f2

File tree

1 file changed

+3
-3
lines changed
  • crates/chat-cli/src/cli/chat

1 file changed

+3
-3
lines changed

crates/chat-cli/src/cli/chat/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,15 +207,15 @@ const SMALL_SCREEN_WECLOME_TEXT: &str = color_print::cstr! {"
207207
"};
208208

209209
const ROTATING_TIPS: [&str; 9] = [
210-
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
211210
color_print::cstr! {"You can use <green!>/editor</green!> to edit your prompt with a vim-like experience"},
211+
color_print::cstr! {"<green!>/usage</green!> shows you a visual breakdown of your current context window usage"},
212+
color_print::cstr! {"Get notified whenever Q CLI finishes responding. Just run <green!>q settings chat.enableNotifications true</green!>"},
212213
color_print::cstr! {"You can execute bash commands by typing <green!>!</green!> followed by the command"},
213214
color_print::cstr! {"Q can use tools without asking for confirmation every time. Give <green!>/tools trust</green!> a try"},
214215
color_print::cstr! {"You can programmatically inject context to your prompts by using hooks. Check out <green!>/context hooks help</green!>"},
215216
color_print::cstr! {"You can use <green!>/compact</green!> to replace the conversation history with its summary to free up the context space"},
216-
color_print::cstr! {"<green!>/usage</green!> shows you a visual breakdown of your current context window usage"},
217217
color_print::cstr! {"If you want to file an issue to the Q CLI team, just tell me, or run <green!>q issue</green!>"},
218-
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with /help"},
218+
color_print::cstr! {"You can enable custom tools with <green!>MCP servers</green!>. Learn more with <green!>/help</green!>"},
219219
];
220220

221221
const GREETING_BREAK_POINT: usize = 67;

0 commit comments

Comments
 (0)