diff --git a/src/Terminal.ts b/src/Terminal.ts index cd3f886d..f57d3c11 100644 --- a/src/Terminal.ts +++ b/src/Terminal.ts @@ -747,14 +747,6 @@ export class Terminal extends EventEmitter implements ITerminal, IDisposable, II } } - /** - * Apply the provided addon on the `Terminal` class. - * @param addon The addon to apply. - */ - // public static applyAddon(addon: any): void { - // addon.apply(Terminal); - // } - /** * XTerm mouse events * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking @@ -1439,7 +1431,6 @@ export class Terminal extends EventEmitter implements ITerminal, IDisposable, II if (result.type === KeyboardResultType.SELECT_ALL) { this.selectAll(); - // TODO: Verify cancel behavior is the same as before } if (this._isThirdLevelShift(this.browser, event)) { diff --git a/src/core/input/Keyboard.ts b/src/core/input/Keyboard.ts index cf290275..8c6f3c59 100644 --- a/src/core/input/Keyboard.ts +++ b/src/core/input/Keyboard.ts @@ -348,7 +348,6 @@ export function evaluateKeyboardEvent( } else if (isMac && !ev.altKey && !ev.ctrlKey && ev.metaKey) { if (ev.keyCode === 65) { // cmd + a result.type = KeyboardResultType.SELECT_ALL; - // TODO: Select all in terminal side } } break;