mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
Add function to display if there is a rebase, merge or bisect going on on the prompt
This commit is contained in:
parent
7a41498b0d
commit
600975cec7
1 changed files with 19 additions and 0 deletions
19
lib/git.zsh
19
lib/git.zsh
|
|
@ -62,3 +62,22 @@ git_prompt_status() {
|
|||
fi
|
||||
echo $STATUS
|
||||
}
|
||||
|
||||
# Checks if there is a bisect, merge or rebase currently going on
|
||||
git_prompt_rebase_state() {
|
||||
STATUS=""
|
||||
|
||||
if [ -f ".git/BISECT_LOG" ] ; then
|
||||
STATUS="$ZSH_THEME_GIT_PROMPT_STATE_BEFORE$ZSH_THEME_GIT_PROMPT_STATE_BISECT"
|
||||
elif [ -f ".git/MERGE_HEAD" ] ; then
|
||||
STATUS="$ZSH_THEME_GIT_PROMPT_STATE_BEFORE$ZSH_THEME_GIT_PROMPT_STATE_MERGE"
|
||||
else
|
||||
for dir in rebase rebase-apply rebase-merge ; do
|
||||
if [ -d ".git/$dir" ] ; then
|
||||
STATUS="$ZSH_THEME_GIT_PROMPT_STATE_BEFORE$ZSH_THEME_GIT_PROMPT_STATE_REBASE"
|
||||
break
|
||||
fi
|
||||
done
|
||||
fi
|
||||
echo $STATUS
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue