diff options
Diffstat (limited to 'zshfunc/vcs-info/VCS_INFO_svn_detect')
-rw-r--r-- | zshfunc/vcs-info/VCS_INFO_svn_detect | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zshfunc/vcs-info/VCS_INFO_svn_detect b/zshfunc/vcs-info/VCS_INFO_svn_detect new file mode 100644 index 0000000..83595db --- /dev/null +++ b/zshfunc/vcs-info/VCS_INFO_svn_detect @@ -0,0 +1,5 @@ +VCS_INFO_svn_detect() { #{{{ + VCS_INFO_check_com svn || return 1 + [[ -d ".svn" ]] && return 0 + return 1 +} |