diff options
author | L.C. Karssen <lennart@karssen.org> | 2015-07-27 12:03:02 +0200 |
---|---|---|
committer | L.C. Karssen <lennart@karssen.org> | 2016-03-07 22:15:45 +0100 |
commit | 55fed4f8cdfcf7791fd22b28ef65b00dcc9e1a5f (patch) | |
tree | a14a6b2152c9fe366e9157cfe7cbe7dd5f0403cc /themes/avit.zsh-theme | |
parent | 9c362484396560119e8ff7a5de0696a9765cb2c7 (diff) | |
download | zsh-55fed4f8cdfcf7791fd22b28ef65b00dcc9e1a5f.tar.gz zsh-55fed4f8cdfcf7791fd22b28ef65b00dcc9e1a5f.tar.bz2 zsh-55fed4f8cdfcf7791fd22b28ef65b00dcc9e1a5f.zip |
Fix use of CARETCOLOR in avit theme
$CARETCOLOR was not to actually colour the caret, so change to root user
wouldn't show in the prompt. Now both ▶ and ◀ follow $CARETCOLOR.
Diffstat (limited to 'themes/avit.zsh-theme')
-rw-r--r-- | themes/avit.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/avit.zsh-theme b/themes/avit.zsh-theme index 54cb357d5..87d5be30a 100644 --- a/themes/avit.zsh-theme +++ b/themes/avit.zsh-theme @@ -1,7 +1,7 @@ # AVIT ZSH Theme PROMPT=' -$(_user_host)$(_current_dir) $(git_prompt_info) $(_ruby_version) +$(_user_host)${_current_dir} $(git_prompt_info) $(_ruby_version) %{$fg[$CARETCOLOR]%}▶%{$resetcolor%} ' PROMPT2='%{$fg[$CARETCOLOR]%}◀%{$reset_color%} ' |