We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c325eac commit 9a26880Copy full SHA for 9a26880
themes/gebner.zsh-theme
@@ -4,7 +4,9 @@ if [ $UID -eq 0 ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi
4
5
REPORTTIME=10 # show execution times for long-running commands
6
7
-local return_code="%(?..%{$fg[red]%}↵ %? %{$reset_color%})"
+local return_symbol="↵"
8
+if [ "$TERM" = cygwin ]; then return_symbol="<-|"; fi
9
+local return_code="%(?..%{$fg[red]%}$return_symbol %? %{$reset_color%})"
10
local user=
11
if [ "$USER" != gebner ]; then user='%{$fg[cyan]%}%n%{$fg_bold[blue]%}@%{$reset_color%}'; fi
12
0 commit comments