vote up -1 vote down star

I put the newest git-completion.bash to my .zshrc and I get

/Users/Masi/bin/shells/git/git-completion.bash:2116: command not found: complete
/Users/Masi/bin/shells/git/git-completion.bash:2118: command not found: complete

The lines are

 complete -o bashdefault -o default -o nospace -F _git git 2>/dev/null \
     || complete -o default -o nospace -F _git git 
 complete -o bashdefault -o default -o nospace -F _gitk gitk 2>/dev/null \
     || complete -o default -o nospace -F _gitk gitk

Which command is a substitute for Bash's complete in Zsh?

flag

Please close as "No longer relevant". – Masi Jun 24 at 21:16

2 Answers

vote up 1 vote down check

Why not just add complete to zsh? It's open-source, right?

link|flag
@TMN: Great point! How can that be done? With the command path? – Masi May 28 at 15:56
1  
I think you'll need to get the source and add "complete" as an internal command. Maybe snag the bash source as well and see how they did it. – TMN May 28 at 16:15
vote up 5 vote down

I do believe it's a problem, since complete is a built-in Bash command. It's part of Bash's programmable completion feature.

link|flag
Thank you for your answer! -- I changed the question. – Masi May 28 at 15:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.