]> arthur.barton.de Git - ax-zsh.git/commitdiff
axemoji.axzshtheme: Disable it on incompatible terminals
authorAlexander Barton <alex@barton.de>
Sun, 2 Jul 2017 12:07:30 +0000 (14:07 +0200)
committerAlexander Barton <alex@barton.de>
Sun, 2 Jul 2017 12:07:54 +0000 (14:07 +0200)
Disable it on Hyper (https://hyper.is) for now.

themes/axemoji.axzshtheme

index 4c4701939b744545e60c42c7bf6298c507fdd2cc..eeb05f16ea994cd311d30bc1d1a3576fd07d240e 100644 (file)
@@ -4,7 +4,11 @@
 ZSH_THEME_PROMPT_PREFIX_SPACING=" "
 ZSH_THEME_PROMPT_SUFFIX_SPACING=" "
 
-if axzsh_is_utf_terminal; then
+enable_emoji=1
+
+[[ "$TERM_PROGRAM" = "Hyper" ]] && unset enable_emoji
+
+if [[ -n "$enable_emoji" ]] && axzsh_is_utf_terminal; then
        # UTF8 capable terminal:
        if [[ -r "$HOME/.system_emoji-$SHORT_HOST" ]]; then
                system_emoji=$(<"$HOME/.system_emoji-$SHORT_HOST")
@@ -23,7 +27,7 @@ if axzsh_is_utf_terminal; then
        # Prompt on right side
        RPS1="%(?..%{$fg_no_bold[red]%}❌$emoji_spacing%? ↵%{$reset_color%})"
 else
-       # Non-UTF8 terminal
+       # Non-UTF8 or incompatible terminal
        system_emoji=">"
        emoji_spacing=""
 
@@ -32,4 +36,4 @@ fi
 
 PS1="${system_emoji}${emoji_spacing} $(ax_logname_prompt_yn)$(ax_hostname_prompt_yn)%B%2~%b"'$(ax_vcs_prompt)'"$(ax_prompt)"
 
-unset system_emoji emoji_spacing
+unset enable_emoji system_emoji emoji_spacing