summaryrefslogtreecommitdiff
path: root/plugins/mercurial
diff options
context:
space:
mode:
authorMark Drago <markdrago@gmail.com>2012-01-05 17:39:13 -0500
committerMark Drago <markdrago@gmail.com>2012-01-05 17:39:13 -0500
commit804c18ca53e832f20869a7681143464382e8a2df (patch)
tree9a8e300bd9fe81ad945557a35e9adc7ff17e1fcf /plugins/mercurial
parent3e9493fb301b7d34bb6861787d97067ec9365268 (diff)
downloadzsh-804c18ca53e832f20869a7681143464382e8a2df.tar.gz
zsh-804c18ca53e832f20869a7681143464382e8a2df.tar.bz2
zsh-804c18ca53e832f20869a7681143464382e8a2df.zip
remove the -v flag from a few mercurial aliases
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.
Diffstat (limited to 'plugins/mercurial')
-rw-r--r--plugins/mercurial/mercurial.plugin.zsh10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/mercurial/mercurial.plugin.zsh b/plugins/mercurial/mercurial.plugin.zsh
index 2988f0a46..caf0d9efc 100644
--- a/plugins/mercurial/mercurial.plugin.zsh
+++ b/plugins/mercurial/mercurial.plugin.zsh
@@ -1,14 +1,14 @@
# Mercurial
-alias hgc='hg commit -v'
-alias hgb='hg branch -v'
+alias hgc='hg commit'
+alias hgb='hg branch'
alias hgba='hg branches'
alias hgco='hg checkout'
alias hgd='hg diff'
alias hged='hg diffmerge'
# pull and update
-alias hgl='hg pull -u -v'
-alias hgp='hg push -v'
-alias hgs='hg status -v'
+alias hgl='hg pull -u'
+alias hgp='hg push'
+alias hgs='hg status'
# this is the 'git commit --amend' equivalent
alias hgca='hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip'