@@ -664,15 +664,15 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
664
664
665
665
public call ( context : RemoteAgentConnectionContext , command : string , args ?: any ) : Promise < any > {
666
666
switch ( command ) {
667
- case '$createTerminalProcess ' : return this . createTerminalProcess ( context . remoteAuthority , args ) ;
668
- case '$startTerminalProcess ' : return this . startTerminalProcess ( ...args as [ number ] ) ;
669
- case '$sendInputToTerminalProcess ' : return this . sendInputToTerminalProcess ( ...args as [ number , string ] ) ;
670
- case '$sendCharCountToTerminalProcess ' : return this . sendCharCountToTerminalProcess ( ...args as [ number , number ] ) ;
671
- case '$shutdownTerminalProcess ' : return this . shutdownTerminalProcess ( ...args as [ number , boolean ] ) ;
672
- case '$resizeTerminalProcess ' : return this . resizeTerminalProcess ( ...args as [ number , number , number ] ) ;
673
- case '$getTerminalInitialCwd ' : return this . getTerminalInitialCwd ( ...args as [ number ] ) ;
674
- case '$getTerminalCwd ' : return this . getTerminalCwd ( ...args as [ number ] ) ;
675
- case '$sendCommandResultToTerminalProcess ' : return this . sendCommandResultToTerminalProcess ( ...args as [ number , number , boolean , any ] ) ;
667
+ case '$createProcess ' : return this . createTerminalProcess ( context . remoteAuthority , args ) ;
668
+ case '$start ' : return this . startTerminalProcess ( ...args as [ number ] ) ;
669
+ case '$input ' : return this . sendInputToTerminalProcess ( ...args as [ number , string ] ) ;
670
+ case '$acknowledgeDataEvent ' : return this . sendCharCountToTerminalProcess ( ...args as [ number , number ] ) ;
671
+ case '$shutdown ' : return this . shutdownTerminalProcess ( ...args as [ number , boolean ] ) ;
672
+ case '$resize ' : return this . resizeTerminalProcess ( ...args as [ number , number , number ] ) ;
673
+ case '$getInitialCwd ' : return this . getTerminalInitialCwd ( ...args as [ number ] ) ;
674
+ case '$getCwd ' : return this . getTerminalCwd ( ...args as [ number ] ) ;
675
+ case '$sendCommandResult ' : return this . sendCommandResultToTerminalProcess ( ...args as [ number , number , boolean , any ] ) ;
676
676
case '$orphanQuestionReply' : return this . orphanQuestionReply ( ...args as [ number ] ) ;
677
677
case '$setTerminalLayoutInfo' : return this . setTerminalLayoutInfo ( args ) ;
678
678
case '$getTerminalLayoutInfo' : return this . getTerminalLayoutInfo ( args ) ;
0 commit comments