Rename ackId to charCount

This commit is contained in:
Daniel Imms
2021-01-12 11:36:21 -08:00
parent bf52d50a0a
commit 0a19f7702a
8 changed files with 17 additions and 18 deletions

View File

@@ -272,7 +272,7 @@ export class MainThreadTerminalService implements MainThreadTerminalServiceShape
request.isWorkspaceShellAllowed
).then(request.callback, request.callback);
proxy.onAcknowledgeDataEvent(ackId => this._proxy.$acceptProcessAckDataEvent(proxy.terminalId, ackId));
proxy.onAcknowledgeDataEvent(charCount => this._proxy.$acceptProcessAckDataEvent(proxy.terminalId, charCount));
proxy.onInput(data => this._proxy.$acceptProcessInput(proxy.terminalId, data));
proxy.onResize(dimensions => this._proxy.$acceptProcessResize(proxy.terminalId, dimensions.cols, dimensions.rows));
proxy.onShutdown(immediate => this._proxy.$acceptProcessShutdown(proxy.terminalId, immediate));