fixed svn-detect-changes().. the svn prompt has now the same behaviour as the git prompt..

pull/22/head
Christian Rebischke 8 years ago committed by Ben Hilburn
parent e134c70bc1
commit 3b0da2c348

@ -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…
Cancel
Save