Set COLORTERM env var to tell apps that we support truecolor

Fixes #76352
This commit is contained in:
Daniel Imms 2019-07-03 10:56:37 -07:00
parent b790b187f7
commit 5e82cb7780

View file

@ -58,6 +58,7 @@ export function addTerminalEnvironmentKeys(env: platform.IProcessEnvironment, ve
if (setLocaleVariables) {
env['LANG'] = _getLangEnvVariable(locale);
}
env['COLORTERM'] = 'truecolor';
}
function mergeNonNullKeys(env: platform.IProcessEnvironment, other: ITerminalEnvironment | NodeJS.ProcessEnv | undefined) {