diff options
| author | Clint Adams <clint@users.sourceforge.net> | 2008-03-09 12:29:52 +0000 |
|---|---|---|
| committer | Clint Adams <clint@users.sourceforge.net> | 2008-03-09 12:29:52 +0000 |
| commit | 9e1c419497c8b604174c4af5af90ebd8c3707a77 (patch) | |
| tree | 3de7c5a8802d84f2d85e9dc6ded71e0d648168bf /Completion/Unix/Command/_git | |
| parent | 24701: use $service instead of $words[1] so completion will work if git is an... (diff) | |
| download | zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.tar zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.tar.gz zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.tar.bz2 zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.tar.lz zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.tar.xz zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.tar.zst zsh-9e1c419497c8b604174c4af5af90ebd8c3707a77.zip | |
24702: fix 24701
Diffstat (limited to 'Completion/Unix/Command/_git')
| -rw-r--r-- | Completion/Unix/Command/_git | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_git b/Completion/Unix/Command/_git index d15f3599e..2724be7d0 100644 --- a/Completion/Unix/Command/_git +++ b/Completion/Unix/Command/_git @@ -4155,8 +4155,8 @@ __git_is_indexed () { __git_aliases_and_commands ;; (options) - curcontext="${curcontext%:*:*}:git-$service:" - _call_function ret _git-$service + curcontext="${curcontext%:*:*}:git-$words[1]:" + _call_function ret _git-$words[1] ;; esac else |
