Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions frontend/app/view/term/term-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,12 @@ export class TermViewModel implements ViewModel {
return false;
}
}
if (keyutil.checkKeyPressed(waveEvent, "Ctrl:Enter")) {
this.sendDataToController("\x1b[13;5u");
event.preventDefault();
event.stopPropagation();
return false;
}
Comment thread
coderabbitai[bot] marked this conversation as resolved.

// Check for Ctrl-V paste (platform-dependent)
if (this.shouldHandleCtrlVPaste() && keyutil.checkKeyPressed(waveEvent, "Ctrl:v")) {
Expand Down