From c49fa23831263e96733570dd06f367273efa4017 Mon Sep 17 00:00:00 2001 From: Mark Probst Date: Thu, 21 Feb 2013 11:11:38 -0800 Subject: [PATCH] Insert ZSH_THEME_GIT_PROMPT_CLEAN into gitfast's prompt. Otherwise we're missing a closing paren in the prompt, at least on robbyrussel theme. --- plugins/gitfast/gitfast.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gitfast/gitfast.plugin.zsh b/plugins/gitfast/gitfast.plugin.zsh index 7e50cf721..fc22a2514 100644 --- a/plugins/gitfast/gitfast.plugin.zsh +++ b/plugins/gitfast/gitfast.plugin.zsh @@ -3,5 +3,5 @@ source $dir/../git/git.plugin.zsh source $dir/git-prompt.sh function git_prompt_info() { - __git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}" + __git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${ZSH_THEME_GIT_PROMPT_CLEAN//\%/%%}${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}" }