Skip to content

Commit c5443b2

Browse files
committed
Merge branch 'mp/complete-paths'
* mp/complete-paths: git-completion.zsh: define __gitcomp_file compatibility function
2 parents e53e8dd + 926eb7b commit c5443b2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

contrib/completion/git-completion.zsh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,15 @@ __gitcomp_nl ()
6060
compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
6161
}
6262

63+
__gitcomp_file ()
64+
{
65+
emulate -L zsh
66+
67+
local IFS=$'\n'
68+
compset -P '*[=:]'
69+
compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
70+
}
71+
6372
_git ()
6473
{
6574
local _ret=1

0 commit comments

Comments
 (0)