check for terminator - more VTE usage.
This commit is contained in:
parent
8047c9da4a
commit
32a783b282
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue