summaryrefslogtreecommitdiff
path: root/zshfunc/vcs-info/VCS_INFO_hg_get_data
diff options
context:
space:
mode:
Diffstat (limited to 'zshfunc/vcs-info/VCS_INFO_hg_get_data')
-rw-r--r--zshfunc/vcs-info/VCS_INFO_hg_get_data15
1 files changed, 15 insertions, 0 deletions
diff --git a/zshfunc/vcs-info/VCS_INFO_hg_get_data b/zshfunc/vcs-info/VCS_INFO_hg_get_data
new file mode 100644
index 0000000..314d343
--- /dev/null
+++ b/zshfunc/vcs-info/VCS_INFO_hg_get_data
@@ -0,0 +1,15 @@
+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
+}