We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78280a commit dba3d49Copy full SHA for dba3d49
1 file changed
src/utils/emoji.js
@@ -1,4 +1,5 @@
1
-const supportsEmoji = process.platform !== 'win32' || process.env.VSCODE_PID;
+const supportsEmoji =
2
+ process.platform !== 'win32' || process.env.TERM === 'xterm-256color';
3
4
// Fallback symbols for Windows from https://en.wikipedia.org/wiki/Code_page_437
5
exports.progress = supportsEmoji ? '⏳' : '∞';
0 commit comments