From: Simon Ruderich Date: Thu, 11 Mar 2010 15:21:46 +0000 (+0100) Subject: zsh/rc: Minor documentation changes for VCS_Info. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=0f2fa8e336698fab86f79bc716e5d94457da7931;p=config%2Fdotfiles.git zsh/rc: Minor documentation changes for VCS_Info. --- diff --git a/zsh/rc b/zsh/rc index e51ebfd..26bee55 100644 --- a/zsh/rc +++ b/zsh/rc @@ -154,9 +154,9 @@ if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) || fi # Allow substitutions and expansions in the prompt, necessary for - # VCS_info. + # VCS_Info. setopt promptsubst - # Load VCS_info to display information about version control repositories. + # Load VCS_Info to display information about version control repositories. autoload -Uz vcs_info # Only look for git and mercurial repositories; the only I use. zstyle ':vcs_info:*' enable git hg @@ -164,9 +164,10 @@ if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) || # below). This comes with a speed penalty for bigger repositories. zstyle ':vcs_info:*' check-for-changes true - # Set style of VCS_info display. The current branch (green) and VCS (blue) + # Set style of VCS_Info display. The current branch (green) and VCS (blue) # is displayed. If there is an special action going on (merge, rebase) - # it's also displayed (red). + # it's also displayed (red). Also display if there are unstaged or staged + # (%u/%c) changes. zstyle ':vcs_info:*' formats \ "($green%b%u%c$default:$blue%s$default)" zstyle ':vcs_info:*' actionformats \ @@ -179,7 +180,7 @@ if [[ $ZSH_VERSION == (4.3.<9->|4.<4->*|<5->*) || zstyle ':vcs_info:*' unstagedstr '¹' zstyle ':vcs_info:*' stagedstr '²' - # Call VCS_info as precmd before every prompt. + # Call VCS_Info as precmd before every prompt. prompt_precmd() { vcs_info }