diff --git a/public/scripts/RossAscends-mods.js b/public/scripts/RossAscends-mods.js index f4073fa8a..a958314e1 100644 --- a/public/scripts/RossAscends-mods.js +++ b/public/scripts/RossAscends-mods.js @@ -906,7 +906,7 @@ export function initRossMods() { //Enter to send when send_textarea in focus if ($(':focus').attr('id') === 'send_textarea') { const sendOnEnter = shouldSendOnEnter(); - if (!event.shiftKey && !event.ctrlKey && event.key == "Enter" && is_send_press == false && sendOnEnter) { + if (!event.shiftKey && !event.ctrlKey && !event.altKey && event.key == "Enter" && is_send_press == false && sendOnEnter) { event.preventDefault(); Generate(); } @@ -949,9 +949,13 @@ export function initRossMods() { console.debug("Ctrl+Enter ignored"); } } - //ctrl+left to show all local stored vars (debug) - if (event.ctrlKey && event.key == "ArrowLeft") { - CheckLocal(); + + // Alt+Enter to Continue + if (event.altKey && event.key == "Enter") { + if (is_send_press == false) { + console.debug("Continuing with Alt+Enter"); + $('#option_continue').trigger('click'); + } } // Helper function to check if nanogallery2's lightbox is active diff --git a/public/scripts/templates/hotkeys.html b/public/scripts/templates/hotkeys.html index 18e751bd9..ad6d6c5ba 100644 --- a/public/scripts/templates/hotkeys.html +++ b/public/scripts/templates/hotkeys.html @@ -4,10 +4,10 @@ Hotkeys/Keybinds:
  • Ctrl+Up = Edit last USER message in chat
  • Left = swipe left
  • Right = swipe right (NOTE: swipe hotkeys are disabled when chatbar has something typed into it)
  • -
  • Ctrl+Left = view locally stored variables (in the browser console window)
  • Enter (with chat bar selected) = send your message to AI
  • Ctrl+Enter = Regenerate the last AI response
  • -
  • Escape = stop AI response generation
  • +
  • Alt+Enter = Continue the last AI response
  • +
  • Escape = stop AI response generation, close UI panels, cancel message edit
  • Ctrl+Shift+Up = Scroll to context line
  • Ctrl+Shift+Down = Scroll chat to bottom