Skip to content

Commit d1b403d

Browse files
committed
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)
1 parent 3325682 commit d1b403d

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! {"You can enable terminal notifications with command <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)