Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c9a28aa

Browse files
author
Akash Satheesan
committedJun 10, 2021
fix(vscode): add new terminal listener
1 parent b88ce55 commit c9a28aa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎lib/vscode/src/vs/server/node/channel.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,8 @@ export class TerminalProviderChannel implements IServerChannel<RemoteAgentConnec
397397
case '$onPtyHostStartEvent': return this.ptyService.onPtyHostStart || Event.None;
398398
case '$onPtyHostUnresponsiveEvent': return this.ptyService.onPtyHostUnresponsive || Event.None;
399399
case '$onPtyHostResponsiveEvent': return this.ptyService.onPtyHostResponsive || Event.None;
400-
400+
case '$onPtyHostRequestResolveVariablesEvent': return this.ptyService.onPtyHostRequestResolveVariables || Event.None;
401+
401402
case '$onProcessDataEvent': return this.ptyService.onProcessData;
402403
case '$onProcessExitEvent': return this.ptyService.onProcessExit;
403404
case '$onProcessReadyEvent': return this.ptyService.onProcessReady;

0 commit comments

Comments
 (0)
Please sign in to comment.