From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10936 invoked by alias); 22 Nov 2012 20:37:27 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 17426 Received: (qmail 18876 invoked from network); 22 Nov 2012 20:37:16 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 Received-SPF: none (ns1.primenet.com.au: domain at closedmail.com does not designate permitted sender hosts) From: Bart Schaefer Message-id: <121122123653.ZM8310@torch.brasslantern.com> Date: Thu, 22 Nov 2012 12:36:53 -0800 In-reply-to: <50AE846A.6020802@mandic.com.br> Comments: In reply to "Daniel Serodio (lists)" "Error in git completion" (Nov 22, 6:00pm) References: <50AE846A.6020802@mandic.com.br> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-users@zsh.org Subject: Re: Error in git completion MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Nov 22, 6:00pm, Daniel Serodio (lists) wrote: } } git completion was working fine, but I don't know why it's stopped working: } } _git:49: _git_commands: function definition file not found The _git_commands function is defined *in* the _git file, so this most likely means that _git_commands is somehow becoming undefined and then marked for autoloading. (If it weren't marked for autoload, you'd get "command not found" rather than "definition file not found".) Under normal circumstances _git_commands would never be marked autoload, it'd just become defined as part of the autoload of _git. So something in your initialization sequence has incorrectly flagged it. Try removing ${ZDOTDIR:-$HOME}/.zcompdump* -- if that doesn't help, you'll need to trace through your startup more carefully.