-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch emojis to log-symbols for terminal compatibility (#363)
* Don't show emoji on windows. * Use log-symbols * Emoji with fallback for windows
- Loading branch information
1 parent
ec89fab
commit 0eb4487
Showing
3 changed files
with
13 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
const supportsEmoji = process.platform !== 'win32' || process.env.VSCODE_PID; | ||
|
||
// Fallback symbols for Windows from https://en.wikipedia.org/wiki/Code_page_437 | ||
exports.progress = supportsEmoji ? '⏳' : '∞'; | ||
exports.success = supportsEmoji ? '✨' : '√'; | ||
exports.error = supportsEmoji ? '🚨' : '×'; |