mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
gitfast: fix prompt
Certain themes need the 'clean' mark, and some people like to have the 'dirty' one, just like the original git_promp_info(). We probably shouldn't be modifying that function, there's no other clean way to achieve our own status information, so let's try to emulate the original as much as possible. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
parent
72a8c08cc8
commit
c944f8b465
1 changed files with 2 additions and 1 deletions
|
@ -3,5 +3,6 @@ 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//\%/%%}"
|
||||
dirty="$(parse_git_dirty)"
|
||||
__git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${dirty//\%/%%}${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue