File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
workbench/contrib/terminal/browser Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -201,7 +201,8 @@ export class RemoteTerminalChannel extends Disposable implements IServerChannel<
201
201
reconnectionProperties : args . shellLaunchConfig . reconnectionProperties ,
202
202
type : args . shellLaunchConfig . type ,
203
203
isFeatureTerminal : args . shellLaunchConfig . isFeatureTerminal ,
204
- tabActions : args . shellLaunchConfig . tabActions
204
+ tabActions : args . shellLaunchConfig . tabActions ,
205
+ shellIntegrationEnvironmentReporting : args . shellLaunchConfig . shellIntegrationEnvironmentReporting ,
205
206
} ;
206
207
207
208
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ class RemoteTerminalBackend extends BaseTerminalBackend implements ITerminalBack
190
190
type : shellLaunchConfig . type ,
191
191
isFeatureTerminal : shellLaunchConfig . isFeatureTerminal ,
192
192
tabActions : shellLaunchConfig . tabActions ,
193
+ shellIntegrationEnvironmentReporting : shellLaunchConfig . shellIntegrationEnvironmentReporting ,
193
194
} ;
194
195
const activeWorkspaceRootUri = this . _historyService . getLastActiveWorkspaceRoot ( ) ;
195
196
You can’t perform that action at this time.
0 commit comments