Browse Source

bash: completion for gitk aliases

gitk aliases either start with "!gitk", or look something like "!sh -c
FOO=bar gitk", IOW they contain the "gitk" word.  With this patch the
completion script will recognize these cases and will offer gitk's
options.

Just like the earlier change improving on aliased command recognition,
this change can also be fooled easily by some complex aliases, but
users of such aliases could remedy it with custom completion
functions.

Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
SZEDER Gábor 15 years ago committed by Junio C Hamano
parent
commit
6672950945
  1. 9
      contrib/completion/git-completion.bash

9
contrib/completion/git-completion.bash

@ -626,6 +626,10 @@ __git_aliased_command () @@ -626,6 +626,10 @@ __git_aliased_command ()
config --get "alias.$1")
for word in $cmdline; do
case "$word" in
\!gitk|gitk)
echo "gitk"
return
;;
\!*) : shell command alias ;;
-*) : option ;;
*=*) : setting env ;;
@ -1087,6 +1091,11 @@ _git_gc () @@ -1087,6 +1091,11 @@ _git_gc ()
COMPREPLY=()
}

_git_gitk ()
{
_gitk
}

_git_grep ()
{
__git_has_doubledash && return

Loading…
Cancel
Save