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/q_cli/src/cli/chat/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const WELCOME_TEXT: &str = color_print::cstr! {"
• Fix the build failures in this project.
• List my s3 buckets in us-west-2.
• Write unit tests for my application.
• Help me understand my git status
• Help me understand my git status.

<em>/tools</em> <black!>View and manage tools and permissions</black!>
<em>/issue</em> <black!>Report an issue or make a feature request</black!>
Expand All @@ -119,7 +119,7 @@ const WELCOME_TEXT: &str = color_print::cstr! {"
<em>/help</em> <black!>Show the help dialogue</black!>
<em>/quit</em> <black!>Quit the application</black!>

<cyan!>Use Alt(⌥) + Enter(⏎) to provide multi-line prompts.</cyan!>
<cyan!>Use Ctrl(^) + j to provide multi-line prompts.</cyan!>
Copy link
Contributor

@mschrage mschrage Apr 7, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<cyan!>Use Ctrl(^) + j to provide multi-line prompts.</cyan!>
<cyan!>Tip: Use Ctrl(^) + j to add a newline in your prompt.</cyan!>


"};

Expand Down Expand Up @@ -155,7 +155,7 @@ const HELP_TEXT: &str = color_print::cstr! {"

<cyan,em>Tips:</cyan,em>
<em>!{command}</em> <black!>Quickly execute a command in your current session</black!>
<em>Alt(⌥) + Enter(⏎)</em> <black!>Insert new-line to provide multi-line prompt. Alternatively, [Ctrl+j]</black!>
<em>Ctrl(^) + j</em> <black!>Insert new-line to provide multi-line prompt. Alternatively, [Alt(⌥) + Enter(⏎)]</black!>

"};

Expand Down
Loading