From 55960b7d61eff89ca17bfc317bbab7b66b672d87 Mon Sep 17 00:00:00 2001 From: meganrogge Date: Thu, 14 Jan 2021 10:46:30 -0800 Subject: [PATCH] add flowControl to terminalConfig --- .../workbench/contrib/terminal/common/remoteTerminalChannel.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/vs/workbench/contrib/terminal/common/remoteTerminalChannel.ts b/src/vs/workbench/contrib/terminal/common/remoteTerminalChannel.ts index 5e72f5ce249..7bb09335710 100644 --- a/src/vs/workbench/contrib/terminal/common/remoteTerminalChannel.ts +++ b/src/vs/workbench/contrib/terminal/common/remoteTerminalChannel.ts @@ -53,6 +53,7 @@ export interface ICompleteTerminalConfiguration { 'terminal.integrated.inheritEnv': boolean; 'terminal.integrated.cwd': string; 'terminal.integrated.detectLocale': 'auto' | 'off' | 'on'; + 'terminal.flowControl': boolean; } export type ITerminalEnvironmentVariableCollections = [string, ISerializableEnvironmentVariableCollection][]; @@ -248,6 +249,7 @@ export class RemoteTerminalChannelClient { 'terminal.integrated.inheritEnv': terminalConfig.inheritEnv, 'terminal.integrated.cwd': terminalConfig.cwd, 'terminal.integrated.detectLocale': terminalConfig.detectLocale, + 'terminal.flowControl': terminalConfig.flowControl }; // We will use the resolver service to resolve all the variables in the config / launch config -- GitLab