diff options
author | Geoff Garside <geoff@geoffgarside.co.uk> | 2009-08-31 14:01:39 +0100 |
---|---|---|
committer | Geoff Garside <geoff@geoffgarside.co.uk> | 2009-08-31 14:01:39 +0100 |
commit | 5811a6b11f86a2807ebd57697eaa67947276b61d (patch) | |
tree | e364418a8de3d266b841121e44f59273255ad35f /git.zsh | |
parent | 0f2e63f8995bfaf35b2cfc149866c3be503d3820 (diff) | |
download | zsh-5811a6b11f86a2807ebd57697eaa67947276b61d.tar.gz zsh-5811a6b11f86a2807ebd57697eaa67947276b61d.tar.bz2 zsh-5811a6b11f86a2807ebd57697eaa67947276b61d.zip |
Strip colours from git.zsh
Diffstat (limited to 'git.zsh')
-rw-r--r-- | git.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ function git_prompt_info() { branch=${ref#refs/heads/} if [[ -d .git ]]; then - CURRENT_BRANCH="%{$fg[red]%}git:(%{$fg[green]${branch}%{$fg[red])" + CURRENT_BRANCH="(${branch})" else CURRENT_BRANCH='' fi |