mercurial.plugin.zsh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 hgl='hg pull -u'
  12. alias hglr='hg pull --rebase'
  13. alias hgo='hg outgoing'
  14. alias hgp='hg push'
  15. alias hgs='hg status'
  16. # this is the 'git commit --amend' equivalent
  17. alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'
  18. function in_hg() {
  19. if [[ -d .hg ]] || $(hg summary > /dev/null 2>&1); then
  20. echo 1
  21. fi
  22. }
  23. function hg_get_branch_name() {
  24. if [ $(in_hg) ]; then
  25. echo $(hg branch)
  26. fi
  27. }
  28. function hg_prompt_info {
  29. if [ $(in_hg) ]; then
  30. _DISPLAY=$(hg_get_branch_name)
  31. echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_HG_PROMPT_PREFIX\
  32. $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"
  33. unset _DISPLAY
  34. fi
  35. }
  36. function hg_dirty_choose {
  37. if [ $(in_hg) ]; then
  38. hg status 2> /dev/null | grep -Eq '^\s*[ACDIM!?L]'
  39. if [ $pipestatus[-1] -eq 0 ]; then
  40. # Grep exits with 0 when "One or more lines were selected", return "dirty".
  41. echo $1
  42. else
  43. # Otherwise, no lines were found, or an error occurred. Return clean.
  44. echo $2
  45. fi
  46. fi
  47. }
  48. function hg_dirty {
  49. hg_dirty_choose $ZSH_THEME_HG_PROMPT_DIRTY $ZSH_THEME_HG_PROMPT_CLEAN
  50. }