From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5904 invoked by alias); 13 Feb 2012 16:55:06 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 30213 Received: (qmail 29012 invoked from network); 13 Feb 2012 16:55:04 -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,SPF_HELO_PASS autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at m.gmane.org designates 80.91.229.3 as permitted sender) X-Injected-Via-Gmane: http://gmane.org/ To: zsh-workers@zsh.org From: Seth House Subject: Re: hg =?utf-8?b?dmNzX2luZm8=?= issue Date: Mon, 13 Feb 2012 16:54:43 +0000 (UTC) Message-ID: References: <4F392C6D.8040408@bigfoot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@dough.gmane.org X-Gmane-NNTP-Posting-Host: sea.gmane.org User-Agent: Loom/3.14 (http://gmane.org/) X-Loom-IP: 174.52.7.43 (Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.46 Safari/535.11) bigfoot.com> writes: > my .zshrc contains: > autoload -Uz vcs_info > zstyle ':vcs_info:*' enable git cvs svn hg bzr > zstyle ':vcs_info:*' check-for-changes true In order for the hg backend to pick up local changes you also need to have the `get-revision` option enabled. (There is a short note about this in the manpage.) The reason for this is the hg backend determines if there are uncommitted changes by running the `hg id` and looking for the '+' character.