diff options
author | Mitchel Humpherys <mitch.special@gmail.com> | 2014-01-07 12:47:58 -0800 |
---|---|---|
committer | Mitchel Humpherys <mitch.special@gmail.com> | 2014-04-29 10:20:39 -0700 |
commit | 33ef34baa5f703ee7fcc502eabed4f1ab968127e (patch) | |
tree | 04dc7b430ca682ec8790222a4dcccd09163e22d0 | |
parent | eafd5f325208421b82a770e57441dd1063eb5745 (diff) | |
download | zsh-33ef34baa5f703ee7fcc502eabed4f1ab968127e.tar.gz zsh-33ef34baa5f703ee7fcc502eabed4f1ab968127e.tar.bz2 zsh-33ef34baa5f703ee7fcc502eabed4f1ab968127e.zip |
Fix gmt compdef
Fix typo: gm -> gmt
-rw-r--r-- | plugins/git/git.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 9f7819df3..c579d1e82 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -82,7 +82,7 @@ alias gwc='git whatchanged -p --abbrev-commit --pretty=medium' alias gpoat='git push origin --all && git push origin --tags' alias gmt='git mergetool --no-prompt' -compdef _git gm=git-mergetool +compdef _git gmt=git-mergetool alias gg='git gui citool' alias gga='git gui citool --amend' |