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.
2 parents 8f4d1a9 + 994ebb3 commit e1a45adCopy full SHA for e1a45ad
src/vs/workbench/contrib/terminal/browser/terminalInstance.ts
@@ -1487,12 +1487,6 @@ export class TerminalInstance extends Disposable implements ITerminalInstance {
1487
}
1488
1489
async sendText(text: string, addNewLine: boolean): Promise<void> {
1490
- // Apply bracketed paste sequences if the terminal has the mode enabled, this will prevent
1491
- // the text from triggering keybindings https://github.com/microsoft/vscode/issues/153592
1492
- if (this.xterm?.raw.modes.bracketedPasteMode) {
1493
- text = `\x1b[200~${text}\x1b[201~`;
1494
- }
1495
-
1496
// Normalize line endings to 'enter' press.
1497
text = text.replace(/\r?\n/g, '\r');
1498
if (addNewLine && text[text.length - 1] !== '\r') {
0 commit comments