summaryrefslogtreecommitdiff
path: root/plugins/mercurial/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/mercurial/README.md')
-rw-r--r--plugins/mercurial/README.md46
1 files changed, 24 insertions, 22 deletions
diff --git a/plugins/mercurial/README.md b/plugins/mercurial/README.md
index 756964896..19d4a17b1 100644
--- a/plugins/mercurial/README.md
+++ b/plugins/mercurial/README.md
@@ -11,27 +11,29 @@ plugins=(... mercurial)
## Aliases
-| Alias | Command |
-|--------|-------------------------------------------------------------------------------------------------------------|
-| `hga` | `hg add` |
-| `hgc` | `hg commit` |
-| `hgca` | `hg commit --amend` |
-| `hgb` | `hg branch` |
-| `hgba` | `hg branches` |
-| `hgbk` | `hg bookmarks` |
-| `hgco` | `hg checkout` |
-| `hgd` | `hg diff` |
-| `hged` | `hg diffmerge` |
-| `hgp` | `hg push` |
-| `hgs` | `hg status` |
-| `hgsl` | `hg log --limit 20 --template "{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n"` |
-| `hgun` | `hg resolve --list` |
-| `hgi` | `hg incoming` |
-| `hgl` | `hg pull -u` |
-| `hglr` | `hg pull --rebase` |
-| `hgo` | `hg outgoing` |
-| `hglg` | `hg log --stat -v` |
-| `hglgp`| `hg log --stat -p -v` |
+| Alias | Command |
+| ------- | ------------------------------------------- |
+| `hga` | `hg add` |
+| `hgc` | `hg commit` |
+| `hgca` | `hg commit --amend` |
+| `hgci` | `hg commit --interactive` |
+| `hgb` | `hg branch` |
+| `hgba` | `hg branches` |
+| `hgbk` | `hg bookmarks` |
+| `hgco` | `hg checkout` |
+| `hgd` | `hg diff` |
+| `hged` | `hg diffmerge` |
+| `hgp` | `hg push` |
+| `hgs` | `hg status` |
+| `hgsl` | `hg log --limit 20 --template "<template>"` |
+| `hgun` | `hg resolve --list` |
+| `hgi` | `hg incoming` |
+| `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`
@@ -61,7 +63,7 @@ ZSH_THEME_HG_PROMPT_CLEAN="%{$fg[magenta]%})"
This is the same as git plugin does. **Note**: additional changes to `.zshrc`, or using a theme designed
to use `hg_prompt_info`, are required in order for this to work.
-## Mantainers
+## Maintainers
- [ptrv](https://github.com/ptrv): original creator
- [oshybystyi](https://github.com/oshybystyi)