Browse Source

feat(mercurial): add `hg log` aliases (#9979)

Co-authored-by: Michał Kielan <kielanm@fb.com>
TheTechRobo 3 years ago
parent
commit
717ece07ef
2 changed files with 4 additions and 1 deletions
  1. 2 1
      plugins/mercurial/README.md
  2. 2 0
      plugins/mercurial/mercurial.plugin.zsh

+ 2 - 1
plugins/mercurial/README.md

@@ -30,7 +30,8 @@ plugins=(... mercurial)
 | `hgl`  | `hg pull -u`                                                                                                |
 | `hglr` | `hg pull --rebase`                                                                                          |
 | `hgo`  | `hg outgoing`                                                                                               |
-
+| `hglg` | `hg log --stat -v`                                                                                          |
+| `hglgp`| `hg log --stat -p -v`                                                                                       |
 ## Prompt usage
 
 - Switch to a theme which uses `hg_prompt_info`

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

@@ -17,6 +17,8 @@ alias hgi='hg incoming'
 alias hgl='hg pull -u'
 alias hglr='hg pull --rebase'
 alias hgo='hg outgoing'
+alias hglg='hg log --stat -v'
+alias hglgp='hg log --stat  -p -v'
 
 function in_hg() {
   if $(hg branch > /dev/null 2>&1); then