Skip to content

Commit af52bbd

Browse files
dsl101sindresorhus
andauthoredJan 20, 2021
Use nice spinner on VSCode's terminal and Windows Terminal (#167)
Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
1 parent 705a473 commit af52bbd

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎index.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ const PREFIX_TEXT = Symbol('prefixText');
1414

1515
const ASCII_ETX_CODE = 0x03; // Ctrl+C emits this code
1616

17+
const terminalSupportsUnicode = () => (
18+
process.platform !== 'win32' ||
19+
process.env.TERM_PROGRAM === 'vscode' ||
20+
Boolean(process.env.WT_SESSION)
21+
);
22+
1723
class StdinDiscarder {
1824
constructor() {
1925
this.requests = 0;
@@ -163,7 +169,7 @@ class Ora {
163169
}
164170

165171
this._spinner = spinner;
166-
} else if (process.platform === 'win32') {
172+
} else if (!terminalSupportsUnicode()) {
167173
this._spinner = cliSpinners.line;
168174
} else if (spinner === undefined) {
169175
// Set default spinner

0 commit comments

Comments
 (0)
Please sign in to comment.