From: Alexander Barton Date: Wed, 21 Aug 2019 09:12:53 +0000 (+0200) Subject: 11_terminal: "putty*" is a modern terminal X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ax-zsh.git;a=commitdiff_plain;h=1afafe763f9166b5f022b2deabb32c0daddf375e 11_terminal: "putty*" is a modern terminal --- diff --git a/core/11_terminal/11_terminal.zshrc b/core/11_terminal/11_terminal.zshrc index 7b1214c..ac24c3b 100644 --- a/core/11_terminal/11_terminal.zshrc +++ b/core/11_terminal/11_terminal.zshrc @@ -47,6 +47,7 @@ function _axzsh_is_widechar_terminal { # Test for "modern" terminal function axzsh_is_modern_terminal { [[ "$TERM" = cygwin ]] && return 0 + [[ "$TERM" = putty* ]] && return 0 [[ "$TERM" = screen* ]] && return 0 [[ "$TERM" = tmux* ]] && return 0 [[ "$TERM" = xterm* ]] && return 0