diff --git a/public/script.js b/public/script.js
index a296f309f..1508d7db8 100644
--- a/public/script.js
+++ b/public/script.js
@@ -328,6 +328,9 @@ const system_messages = {
Enter (with chat bar selected) = send your message to AI
Ctrl+Enter = Regenerate the last AI response
Escape = stop AI response generation
+ Ctrl+Shift+Up = Scroll to context line
+ Ctrl+Shift+Down = Scroll chat to bottom
+
`
]
},
diff --git a/public/scripts/RossAscends-mods.js b/public/scripts/RossAscends-mods.js
index 3a2aedae2..000e118bd 100644
--- a/public/scripts/RossAscends-mods.js
+++ b/public/scripts/RossAscends-mods.js
@@ -349,7 +349,7 @@ function RA_checkOnlineStatus() {
connection_made = false;
} else {
if (online_status !== undefined && online_status !== "no_connection") {
- $("#send_textarea").attr("placeholder", "Type a message..."); //on connect, placeholder tells user to type message
+ $("#send_textarea").attr("placeholder", `Type a message, or /? for command list`); //on connect, placeholder tells user to type message
$('#send_form').removeClass("no-connection");
$("#API-status-top").removeClass("fa-plug-circle-exclamation redOverlayGlow");
$("#API-status-top").addClass("fa-plug");