Merge branch 'mp/complete-paths'
* mp/complete-paths: git-completion.zsh: define __gitcomp_file compatibility function
This commit is contained in:
commit
c5443b2a1e
@ -60,6 +60,15 @@ __gitcomp_nl ()
|
||||
compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0
|
||||
}
|
||||
|
||||
__gitcomp_file ()
|
||||
{
|
||||
emulate -L zsh
|
||||
|
||||
local IFS=$'\n'
|
||||
compset -P '*[=:]'
|
||||
compadd -Q -p "${2-}" -f -- ${=1} && _ret=0
|
||||
}
|
||||
|
||||
_git ()
|
||||
{
|
||||
local _ret=1
|
||||
|
Loading…
Reference in New Issue
Block a user