diff --git a/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts b/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts index 96d111ab7c98c..6354f5f7b64fc 100644 --- a/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts +++ b/src/vs/workbench/contrib/terminal/browser/xterm/decorationAddon.ts @@ -194,7 +194,6 @@ export class DecorationAddon extends Disposable implements ITerminalAddon { } registerCommandDecoration(command: ITerminalCommand, beforeCommandExecution?: boolean): IDecoration | undefined { - console.log('registerCommandDecoration'); if (!this._terminal) { return undefined; } diff --git a/src/vs/workbench/contrib/terminal/browser/xterm/xtermTerminal.ts b/src/vs/workbench/contrib/terminal/browser/xterm/xtermTerminal.ts index c7983b71adf5c..4df150b6ad446 100644 --- a/src/vs/workbench/contrib/terminal/browser/xterm/xtermTerminal.ts +++ b/src/vs/workbench/contrib/terminal/browser/xterm/xtermTerminal.ts @@ -179,9 +179,6 @@ export class XtermTerminal extends DisposableStore implements IXtermTerminal, II this.raw.loadAddon(this._shellIntegrationAddon); } - // private _createDecorationAddon(): void { - // } - async getSelectionAsHtml(command?: ITerminalCommand): Promise { if (!this._serializeAddon) { const Addon = await this._getSerializeAddonConstructor();