mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-17 10:10:07 +00:00
fixed svn-detect-changes().. the svn prompt has now the same behaviour as the git prompt..
This commit is contained in:
parent
e134c70bc1
commit
3b0da2c348
1 changed files with 4 additions and 4 deletions
|
@ -127,11 +127,11 @@ function +vi-vcs-detect-changes() {
|
||||||
function +vi-svn-detect-changes() {
|
function +vi-svn-detect-changes() {
|
||||||
local svn_status=$(svn status)
|
local svn_status=$(svn status)
|
||||||
if [[ -n "$(echo "$svn_status" | grep \^\?)" ]]; then
|
if [[ -n "$(echo "$svn_status" | grep \^\?)" ]]; then
|
||||||
|
hook_com[unstaged]+=" $(print_icon 'VCS_STASH_ICON')"
|
||||||
VCS_WORKDIR_HALF_DIRTY=true
|
VCS_WORKDIR_HALF_DIRTY=true
|
||||||
elif [[ -n "$(echo "$svn_status" | grep \^\A)" ]]; then
|
fi
|
||||||
|
if [[ -n "$(echo "$svn_status" | grep \^\A)" ]]; then
|
||||||
VCS_WORKDIR_DIRTY=true
|
VCS_WORKDIR_DIRTY=true
|
||||||
else
|
hook_com[unstaged]+=" $(print_icon 'VCS_STAGED_ICON')"
|
||||||
VCS_WORKDIR_DIRTY=false
|
|
||||||
VCS_WORKDIR_HALF_DIRTY=false
|
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue