+#!/bin/zsh
+
prompt_arrows_help() {
cat << EOF
prompt arrows <right|2line> <normal> <prompt> <ssh> <urgent> <comment> <dir> <unwritable>
zstyle ':vcs_info:git*' formats "%c%u%%F{$p}%r/%b%%F{$n}/%%F{$d}%S%%f"
zstyle ':vcs_info:git*' actionformats "%%F{$r}(%a)%f %c%u%%F{$p}%r/%b%f/%%F{$d}%S%f"
zstyle ':vcs_info:git*' stagedstr "%F{$c}+"
- zstyle ':vcs_info:git*' unstagedstr "%F{$r}*"
+ zstyle ':vcs_info:git*' unstagedstr "%F{$r}!"
# add-zsh-hook should have already been autoloaded by promptinit
add-zsh-hook precmd prompt_arrows_precmd
}
prompt_arrows_setup "$@"
-# vim: set et fenc=utf-8 ft=zsh sts=4 sw=4 ts=8 tw=0 :