mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-02 10:01:11 +02:00
25461: patch to add HEAD as a completion for heads, from Mikael Magnusson.
This commit is contained in:
parent
ad001cc1e3
commit
f413d1f4d9
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2008-08-16 Clint Adams <clint@zsh.org>
|
||||
|
||||
* 25461: Completion/Unix/Command/_git: patch to add HEAD as
|
||||
a completion for heads, from Mikael Magnusson.
|
||||
|
||||
* 25460: Completion/Unix/Command/_git: patch to add the
|
||||
--branches/tags/remotes for rev-list to _git from Mikael
|
||||
Magnusson.
|
||||
|
|
|
@ -2900,7 +2900,7 @@ __git_heads () {
|
|||
branch_names=(${${(f)"$(_call_program heads git branch --no-color -a 2>/dev/null)"}#[* ] })
|
||||
__git_command_successful || return
|
||||
|
||||
_wanted heads expl branch-name compadd $* - $branch_names
|
||||
_wanted heads expl branch-name compadd $* - $branch_names HEAD
|
||||
}
|
||||
|
||||
(( $+functions[__git_tags] )) ||
|
||||
|
|
Loading…
Reference in a new issue