Merge branch 'fc/zsh-completion'

Hotfix for a recent breakage.

* fc/zsh-completion:
  completion: bash: fix gitk alias regression
  completion: zsh: fix file completion regression
This commit is contained in:
Junio C Hamano 2020-12-08 15:11:22 -08:00
commit 7d92da3787
2 changed files with 2 additions and 1 deletions

View file

@ -1829,7 +1829,7 @@ _git_fsck ()
_git_gitk ()
{
_gitk
__gitk_main
}
# Lists matching symbol names from a tag (as in ctags) file.

View file

@ -116,6 +116,7 @@ __gitcomp_file ()
{
emulate -L zsh
compset -P '*[=:]'
compadd -f -p "${2-}" -- ${(f)1} && _ret=0
}