mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-08-16 09:48:06 +02:00
gitfast: synchronize with upstream
Up to version 1.8.2.1. Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user