Fix terminal mouse reporting via binary events (#120145)

* fix #96058
This commit is contained in:
Megan Rogge
2021-03-31 15:57:49 -07:00
committed by GitHub
parent 7b11e6519e
commit d5cf4ac0eb
16 changed files with 75 additions and 7 deletions

View File

@@ -225,6 +225,10 @@ export class ExtHostPseudoterminal implements ITerminalChildProcess {
}
}
processBinary(data: string) {
throw new Error('not implemented');
}
acknowledgeDataEvent(charCount: number): void {
// No-op, flow control is not supported in extension owned terminals. If this is ever
// implemented it will need new pause and resume VS Code APIs.