aboutsummaryrefslogtreecommitdiff
path: root/functions/vcs.zsh
diff options
context:
space:
mode:
authorBen Hilburn <bhilburn@gmail.com>2016-08-31 03:29:36 +0300
committerBen Hilburn <bhilburn@gmail.com>2016-08-31 03:44:07 +0300
commit683ca10e369ae6699197e81f6fd5aec44c05c4f1 (patch)
treeb42e0e456650ed3cc5827324695f92ef49b41884 /functions/vcs.zsh
parent3b0da2c3489fd65543d9b116d4aaa7d1405fff32 (diff)
vcs: adding detection of unstaged / staged for svn repos
Diffstat (limited to 'functions/vcs.zsh')
-rw-r--r--functions/vcs.zsh12
1 files changed, 8 insertions, 4 deletions
diff --git a/functions/vcs.zsh b/functions/vcs.zsh
index 50b58fbf..9418df81 100644
--- a/functions/vcs.zsh
+++ b/functions/vcs.zsh
@@ -113,8 +113,8 @@ function +vi-vcs-detect-changes() {
vcs_visual_identifier='VCS_GIT_ICON'
elif [[ "${hook_com[vcs]}" == "hg" ]]; then
vcs_visual_identifier='VCS_HG_ICON'
-# elif [[ "${hook_com[vcs]}" == "svn" ]]; then
-# vcs_visual_identifier='VCS_SVN_ICON'
+ elif [[ "${hook_com[vcs]}" == "svn" ]]; then
+ vcs_visual_identifier='VCS_SVN_ICON'
fi
if [[ -n "${hook_com[staged]}" ]] || [[ -n "${hook_com[unstaged]}" ]]; then
@@ -127,11 +127,15 @@ function +vi-vcs-detect-changes() {
function +vi-svn-detect-changes() {
local svn_status=$(svn status)
if [[ -n "$(echo "$svn_status" | grep \^\?)" ]]; then
- hook_com[unstaged]+=" $(print_icon 'VCS_STASH_ICON')"
+ hook_com[unstaged]+=" $(print_icon 'VCS_UNTRACKED_ICON')"
VCS_WORKDIR_HALF_DIRTY=true
fi
+ if [[ -n "$(echo "$svn_status" | grep \^\M)" ]]; then
+ hook_com[unstaged]+=" $(print_icon 'VCS_UNSTAGED_ICON')"
+ VCS_WORKDIR_DIRTY=true
+ fi
if [[ -n "$(echo "$svn_status" | grep \^\A)" ]]; then
+ hook_com[staged]+=" $(print_icon 'VCS_STAGED_ICON')"
VCS_WORKDIR_DIRTY=true
- hook_com[unstaged]+=" $(print_icon 'VCS_STAGED_ICON')"
fi
}