Skip to content

Commit ef9a128

Browse files
Add terminal notification tip to rotating tips (#1446)
* feat(chat): Add notification tip to rotating tips Add a new tip to the rotating tips array that informs users about enabling terminal notifications with the settings command. 🤖 Assisted by [Amazon Q Developer](https://aws.amazon.com/q/developer) * fix * fix --------- Co-authored-by: Sai Srinivas S <somarsai@amazon.com>
1 parent 58b5902 commit ef9a128

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

crates/q_chat/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,8 @@ const SMALL_SCREEN_WECLOME_TEXT: &str = color_print::cstr! {"
199199
<em>Welcome to <cyan!>Amazon Q</cyan!>!</em>
200200
"};
201201

202-
const ROTATING_TIPS: [&str; 8] = [
202+
const ROTATING_TIPS: [&str; 9] = [
203+
color_print::cstr! {"Get notified whenever Q CLI generates a response or requests permission. Just ask me, or run <green!>q settings chat.enableNotifications true</green!>"},
203204
color_print::cstr! {"You can use <green!>/editor</green!> to edit your prompt with a vim-like experience"},
204205
color_print::cstr! {"You can execute bash commands by typing <green!>!</green!> followed by the command"},
205206
color_print::cstr! {"Q can use tools without asking for confirmation every time. Give <green!>/tools trust</green!> a try"},

0 commit comments

Comments
 (0)