Replies: 2 comments
|
Yes, i would really prefer a feature like this, specially because earlier versions of T3 code has this feature as far as i remember, and it was significant. |
0 replies
|
Resolved by #12075: Settings now includes a Send shortcut option (Enter, Ctrl/⌘+Enter for multiline, or Ctrl/⌘+Enter always), with matching background-thread chords. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Before submitting
I searched existing issues and did not find an exact duplicate.
I am describing a concrete problem or use case, not just a vague idea.
Area
apps/web
Problem or use case
The chat prompt input submits immediately on Enter, and there is no way to configure this behavior. Users accustomed to chat-style UX (Slack, Discord, ChatGPT web) expect Enter to insert a newline and Ctrl+Enter to submit.
This causes frequent accidental submissions when composing multi-line prompts — pasting code snippets, writing detailed task descriptions, or drafting prompts incrementally — since pressing Enter mid-edit fires the message prematurely. The only current workaround is Shift+Enter for newline, which is undiscoverable and doesn't match the muscle memory of many users.
Steps to reproduce:
Expected behavior
Users should be able to choose their submit/newline key mapping, e.g.:
Actual behavior
Enter is hardcoded to submit. There is no setting, config file entry, or keybinding customization exposed for the prompt input's submit action.
Suggested behavior
submitandnewlineas configurable keybindings in Settings, with defaults preserved (Enter= submit,Shift+Enter= newline).Why this matters
Accidental submissions interrupt agent runs, pollute thread history, and force users to stop generation and re-paste content. This behavior is standard in comparable tools (Claude Code, Codex, Slack, Discord all offer either this exact layout or a toggle), and its absence is a daily friction point for multi-line prompt workflows.
Acceptance criteria
All reactions