check for terminator - more VTE usage.

This commit is contained in:
Christopher Jeffrey 2015-01-31 21:57:23 -08:00
parent 8047c9da4a
commit 32a783b282

View File

@ -69,7 +69,8 @@ function Program(options) {
|| (process.platform === 'win32' ? 'windows-ansi' : 'xterm');
this.isXFCE = /xfce/i.test(process.env.COLORTERM);
this.isVTE = !!(process.env.VTE_VERSION || this.isXFCE);
this.isTerminator = process.env.TERMINATOR_UUID;
this.isVTE = !!(process.env.VTE_VERSION || this.isXFCE || this.isTerminator);
this._buf = '';
this._flush = this.flush.bind(this);