summaryrefslogtreecommitdiff
path: root/plugins/mercurial/mercurial.plugin.zsh
AgeCommit message (Collapse)Author
2020-03-11Clean up plugin READMEs and a few pluginsMarc Cornellà
- fasd - history - mercurial - pylint - repo - yii2
2018-10-06mercurial: add hga alias for "hg add" (#4969)Mirko Lelansky
Add an alias for adding files in the mercurial plugin.
2015-11-26Use actual `commit --amend` command for MercurialWeeBull
Rather than trying to emulate `git commit --amend` using mercurial queues (which might have side effects if you're using MQ for other things) use the `commit --amend` command which was introduced in Mercurial 2.2 (2012-05-01).
2015-02-20plugins: mercurial: Update the order prompt vars are displayedMurilo Opsfelder Araujo
If a user sets ZSH_THEME_HG_PROMPT_* as the following, he ends up with %{$reset_color%} resetting the bold style of last character ")" because _SUFFIX was expanded before calling hg_dirty(): ZSH_THEME_HG_PROMPT_PREFIX="%{$fg_bold[blue]%}hg:(%{$fg[white]%}" ZSH_THEME_HG_PROMPT_SUFFIX="%{$reset_color%}" ZSH_THEME_HG_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" ZSH_THEME_HG_PROMPT_CLEAN="%{$fg[blue]%})" With this patch, the variable ZSH_THEME_HG_PROMPT_SUFFIX is lastly displayed, following the same order as in git_prompt_info(), i.e. <prefix><dirty><suffix>.
2014-11-16ignore any grep aliases that might be definedDanielFGray
2014-06-07Add a command to show unresolve files in mergeChris Krycho
2014-03-10Fix hgsl alias.Zhou Hua
The original 'hgsl' missed 'hg' part.
2013-12-01Adds the hgsl alias for one-line shortlog convenienceJens Tinfors
2013-06-25Add more capable hg incoming and outgoing count handlingChris Krycho
The original hgic and hgoc aliases worked well for the default path, but attempting to call them with a different path failed. I created functions to handle them instead.
2013-06-25Merge pull request #1876 from chriskrycho/patch-1Robby Russell
Add count for incoming and outgoing changesets.
2013-06-07Add count for incoming and outgoing changesets.Chris Krycho
2013-04-24extend mercurial plugin to be more like git/svnPhilipp Tessenow
implement in_hg(), hg_get_branch_name(), hg_prompt_info(), and hg_dirty() for the mercurial plugin named functions similar to subversion plugin, to give theme maintainers an easier life
2013-04-09Add alias for 'hg bookmarks'Vladimir Zakharov
2013-03-27Mercurial: add alias for pull with rebasingVladimir Zakharov
2013-03-11Mercurial: add aliases for 'incoming' and 'outgoing' commandsVladimir Zakharov
2012-12-02hg_current_branch added to mercurial pluginLucas Sampaio
2012-01-05remove the -v flag from a few mercurial aliasesMark Drago
The -v flag for these commands really isn't very useful. It will output some information about the hooks it is running, but that is generally not useful and just noisy. The desire to add -v to these commands is exceptional and IMHO it's better to make the common case of not seeing those messages the supported behavior.
2011-06-10Added mercurial plugin with aliases.ptrv