mercurial.plugin.zsh 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # Mercurial
  2. alias hgc='hg commit'
  3. alias hgb='hg branch'
  4. alias hgba='hg branches'
  5. alias hgbk='hg bookmarks'
  6. alias hgco='hg checkout'
  7. alias hgd='hg diff'
  8. alias hged='hg diffmerge'
  9. # pull and update
  10. alias hgi='hg incoming'
  11. alias hgic='hg incoming | grep "changeset" | wc -l'
  12. alias hgl='hg pull -u'
  13. alias hglr='hg pull --rebase'
  14. alias hgo='hg outgoing'
  15. alias hgoc='hg outgoing | grep 'changeset' | wc -l'
  16. alias hgp='hg push'
  17. alias hgs='hg status'
  18. # this is the 'git commit --amend' equivalent
  19. alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
  20. function in_hg() {
  21. if [[ -d .hg ]] || $(hg summary > /dev/null 2>&1); then
  22. echo 1
  23. fi
  24. }
  25. function hg_get_branch_name() {
  26. if [ $(in_hg) ]; then
  27. echo $(hg branch)
  28. fi
  29. }
  30. function hg_prompt_info {
  31. if [ $(in_hg) ]; then
  32. _DISPLAY=$(hg_get_branch_name)
  33. echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_HG_PROMPT_PREFIX\
  34. $ZSH_THEME_REPO_NAME_COLOR$_DISPLAY$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_HG_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR$(hg_dirty)$ZSH_PROMPT_BASE_COLOR"
  35. unset _DISPLAY
  36. fi
  37. }
  38. function hg_dirty_choose {
  39. if [ $(in_hg) ]; then
  40. hg status 2> /dev/null | grep -Eq '^\s*[ACDIM!?L]'
  41. if [ $pipestatus[-1] -eq 0 ]; then
  42. # Grep exits with 0 when "One or more lines were selected", return "dirty".
  43. echo $1
  44. else
  45. # Otherwise, no lines were found, or an error occurred. Return clean.
  46. echo $2
  47. fi
  48. fi
  49. }
  50. function hg_dirty {
  51. hg_dirty_choose $ZSH_THEME_HG_PROMPT_DIRTY $ZSH_THEME_HG_PROMPT_CLEAN
  52. }