vote up 1 vote down star
2

I have a problem with the zsh tab completion: After running:

autoload -U compinit compinit

Git tab completion for files does not work any more. For example if I type git add my_f to complete my_file, nothing happens. The zsh git completion only seems to work for git branches and tags.

Without the compinit stuff, git file completion works, but of course I'm missing out all the fancy branch completion stuff.

So... Is there a way to make git file completion AND git branch completion possible at the same time in zsh? This would really help me a lot.

-- Regards Ralph

flag
In my .zshrc I have 'autoload -U compinit' then 'compinit' on a separate line, and completions work fine for me. Are you running a single command, or is the formatting confusing me? – bobDevil Oct 30 at 20:13
Completing files after git add also works for me (zsh 4.3.10-dev-1). One surprising thing is that it only offers untracked and tracked-but-modified files when completing git add (this is OK since those are the only things you would need to add). For git diff, it offers all tracked files and all branches. – Chris Johnsen Oct 31 at 14:11
@Chris Johnsen: You are right, it does work with files that fit the current git command, like untracked files in the case of git add. I tried the completion without paying attention to that. So thank you very much! – Ralph von der Heyden Nov 2 at 15:29

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.