-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No emoji in bash prompt when launch #645
Comments
Can you show us your .bash_profile? |
@Jonas-Drotleff here it is:
|
I have an issue where using ⚡️(high voltage) always shows ⚡︎ (high voltage sign) instead.
|
@chrishtanaka This is because you use a font that actually has a symbol for the ⚡️ unicode character. The system will always use the font's icons first and if they don't exist, it will take a fallback font, which is the emoji font on macOS |
@Jonas-Drotleff How would I determine which fonts have symbols for ⚡️ without trying out each one in hyper? |
@chrishtanaka This is what I found on the web: Basically you just have to try... |
Ah, think I've spotted the issue __WEBPACK_IMPORTED_MODULE_0_hterm_umdjs__["hterm"].Terminal.IO.prototype.writeUTF8 This method here, the loop is using I suspect changing the |
Seeing the same issue here. Simple repro: # ~/.bash_profile
export PS1='\n 💭 ' Results in: With the same error as @simeydotme : Like @vwvww mentioned, removing the newline For those bothered by this bug a temporary remedy is to add a # ~/.bash_profile
export PS1='\n 💭 '
clear Looks to me like the |
I think this is fixed by #1366 :) |
Thanks @simeydotme |
I'm seeing an interesting thing. My bash prompt I have configured an emoji in it, and when launching hyperterm it doesn't recognize it immediately, but it does for all subsequent prompts. See the screenshot below that shows the repro:
The text was updated successfully, but these errors were encountered: