Resolve todos

This commit is contained in:
Daniel Imms
2018-06-12 17:17:21 +02:00
parent bb4db71958
commit 57959249d8
2 changed files with 0 additions and 10 deletions
-9
View File
@@ -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)) {
-1
View File
@@ -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;