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