We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5087a commit 912e0aaCopy full SHA for 912e0aa
tabby-terminal/src/api/baseTerminalTab.component.ts
@@ -542,7 +542,7 @@ export class BaseTerminalTabComponent<P extends BaseTerminalProfile> extends Bas
542
}
543
544
if (!this.alternateScreenActive) {
545
- if (data.includes('\r') && this.config.store.terminal.warnOnMultilinePaste) {
+ if ((data.includes('\r') || data.includes('\n')) && this.config.store.terminal.warnOnMultilinePaste) {
546
const buttons = [
547
this.translate.instant('Paste'),
548
this.translate.instant('Cancel'),
0 commit comments