You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current detection of emoji support on Windows (wants_emoji() in windows_term/mod.rs) only works for Windows Terminal.
It would be nice if the integrated terminal of VSCode would be detected and supported. The VSCode terminal has unicode and emoji support similar to Windows Terminal.
Workaround
A workaround exists by manually setting the "WT_SESSION" environment variable, but that seems like a bad hack.
Suggested solution
VSCode already sets the environment variable "TERM_PROGRAM" to the value "vscode". This value could be checked in the wants_emoji() function to enable emoji support for VSCode.
The text was updated successfully, but these errors were encountered:
Issue
The current detection of emoji support on Windows (
wants_emoji()
inwindows_term/mod.rs
) only works for Windows Terminal.It would be nice if the integrated terminal of VSCode would be detected and supported. The VSCode terminal has unicode and emoji support similar to Windows Terminal.
Workaround
A workaround exists by manually setting the "WT_SESSION" environment variable, but that seems like a bad hack.
Suggested solution
VSCode already sets the environment variable "TERM_PROGRAM" to the value "vscode". This value could be checked in the
wants_emoji()
function to enable emoji support for VSCode.The text was updated successfully, but these errors were encountered: