From 57166a57a2361894f8897630fff6d460e96aae3f Mon Sep 17 00:00:00 2001 From: ELLIOTTCABLE Date: Wed, 22 Nov 2017 04:19:33 -0600 Subject: [PATCH] =?UTF-8?q?Expose=20=E2=80=98true=20colour=E2=80=99=20supp?= =?UTF-8?q?ort=20in=20$COLORTERM=20(#2478)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/session.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/session.js b/app/session.js index 8ce1ba55..aaa09c07 100644 --- a/app/session.js +++ b/app/session.js @@ -26,6 +26,7 @@ module.exports = class Session extends EventEmitter { const baseEnv = Object.assign({}, process.env, { LANG: app.getLocale().replace('-', '_') + '.UTF-8', TERM: 'xterm-256color', + COLORTERM: 'truecolor', TERM_PROGRAM: productName, TERM_PROGRAM_VERSION: version }, envFromConfig);