diff options
Diffstat (limited to 'zshfunc/vcs-info/VCS_INFO_hg_get_data')
-rw-r--r-- | zshfunc/vcs-info/VCS_INFO_hg_get_data | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/zshfunc/vcs-info/VCS_INFO_hg_get_data b/zshfunc/vcs-info/VCS_INFO_hg_get_data deleted file mode 100644 index 314d343..0000000 --- a/zshfunc/vcs-info/VCS_INFO_hg_get_data +++ /dev/null @@ -1,15 +0,0 @@ -VCS_INFO_hg_get_data () { # {{{ - local hgbranch hgbase file - - hgbase=${vcs_comm[basedir]} - - file="${hgbase}/.hg/branch" - if [[ -r ${file} ]] ; then - hgbranch=$(< ${file}) - else - hgbranch='default' - fi - - VCS_INFO_formats '' "${hgbranch}" "${hgbase}" - return 0 -} |