diff options
author | Nikolai Weibull <pcppopper@users.sourceforge.net> | 2011-07-21 09:08:32 +0000 |
---|---|---|
committer | Nikolai Weibull <pcppopper@users.sourceforge.net> | 2011-07-21 09:08:32 +0000 |
commit | e3c1917345abff3fd27e862795e2dbd0ef82b166 (patch) | |
tree | b64b135a9d25e522fe25b0cc317ed25cb990f76a | |
parent | 6502b3827722b1acfb4610367324b56a847bf403 (diff) | |
download | zsh-e3c1917345abff3fd27e862795e2dbd0ef82b166.tar.gz zsh-e3c1917345abff3fd27e862795e2dbd0ef82b166.tar.xz zsh-e3c1917345abff3fd27e862795e2dbd0ef82b166.zip |
unposted: Completion/Unix/Command/_git: Move _gitk and _tig to correct
location.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_git | 20 |
2 files changed, 14 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog index 911057672..7498e80d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,6 +3,9 @@ * 29272: Completion/Unix/Command/_git: Use return values correctly accross all completion functions. + * unposted: Completion/Unix/Command/_git: Move _gitk and _tig to + correct location. + 2011-07-19 Peter Stephenson <pws@csr.com> * 29555: Src/exec.c: fix problem that shell failed to use file @@ -15125,5 +15128,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5399 $ +* $Revision: 1.5400 $ ***************************************************** diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index 8f9f6d454..b4fcf07d5 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -1579,6 +1579,16 @@ _git-tag () { '*:: :__git_ignore_line_inside_arguments __git_tags' } +(( $+functions[_gitk] )) || +_gitk () { + _git-log +} + +(( $+functions[_tig] )) || +_tig () { + _git-log +} + # Ancillary Commands (Manipulators) (( $+functions[_git-config] )) || @@ -6052,16 +6062,6 @@ __git_color_attributes () { _describe -t attributes attribute attributes $* } -(( $+functions[_gitk] )) || -_gitk () { - _git-log -} - -(( $+functions[_tig] )) || -_tig () { - _git-log -} - # Now, for the main driver… _git() { if (( CURRENT > 2 )); then |