Browse Source

hg_current_branch added to mercurial plugin

Lucas Sampaio 12 years ago
parent
commit
51e05b7579
1 changed files with 6 additions and 0 deletions
  1. 6 0
      plugins/mercurial/mercurial.plugin.zsh

+ 6 - 0
plugins/mercurial/mercurial.plugin.zsh

@@ -12,3 +12,9 @@ alias hgp='hg push'
 alias hgs='hg status'
 # this is the 'git commit --amend' equivalent
 alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
+
+function hg_current_branch() {
+  if [ -d .hg ]; then
+    echo hg:$(hg branch)
+  fi
+}