]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
zsh/rc: Use ${..} for color variables.
authorSimon Ruderich <simon@ruderich.org>
Sat, 27 Apr 2013 14:25:44 +0000 (16:25 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 27 Apr 2013 14:36:43 +0000 (16:36 +0200)
It's more readable.

zsh/rc

diff --git a/zsh/rc b/zsh/rc
index 2712314b7d32840417b99dfe583b3f1b0cd9b923..734040f972a1a21d9d63379247fae3ee06a92cd6 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -234,16 +234,16 @@ if [[ $ZSH_VERSION == (4.3.<9->*|4.<4->*|<5->*) ||
     if [[ $ZSH_VERSION == (4.3.<11->*|4.<4->*|<5->*) ||
           -d ~/.zsh/functions/vcs_info ]]; then
         zstyle ':vcs_info:*' formats \
-            "($green%b%u%c$default:$blue%s$default)"
+            "(${green}%b%u%c${default}:${blue}%s${default})"
         zstyle ':vcs_info:*' actionformats \
-            "($green%b%u%c$default/$red%a$default:$blue%s$default)"
+            "(${green}%b%u%c${default}/${red}%a${default}:${blue}%s${default})"
     else
         # In older versions %u and %c are not defined yet and are not
         # correctly expanded.
         zstyle ':vcs_info:*' formats \
-            "($green%b$default:$blue%s$default)"
+            "(${green}%b${default}:${blue}%s${default})"
         zstyle ':vcs_info:*' actionformats \
-            "($green%b$default/$red%a$default:$blue%s$default)"
+            "(${green}%b${default}/${red}%a${default}:${blue}%s${default})"
     fi
     # Set style for formats/actionformats when unstaged (%u) and staged (%c)
     # changes are detected in the repository; check-for-changes must be set to