From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15001 invoked by alias); 28 Feb 2014 18:38:03 -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: 32443 Received: (qmail 29885 invoked from network); 28 Feb 2014 18:37:57 -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=-6.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_HI, SPF_HELO_PASS autolearn=ham version=3.3.2 X-AuditID: cbfec7f5-b7fc96d000004885-f8-5310d7817b26 Date: Fri, 28 Feb 2014 18:37:54 +0000 From: Peter Stephenson To: Tobias , zsh-workers@zsh.org Subject: Re: ZSH Shell support - Bug with a special character Message-id: <20140228183754.5d959065@pwslap01u.europe.root.pri> In-reply-to: <5310C0BE.1010608@openenglish.com> References: <5310C0BE.1010608@openenglish.com> Organization: Samsung Cambridge Solution Centre X-Mailer: Claws Mail 3.7.9 (GTK+ 2.22.0; i386-redhat-linux-gnu) MIME-version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFprELMWRmVeSWpSXmKPExsVy+t/xa7qN1wWCDXZtNrOY++AHo8XB5odM Dkwe86+zeKw6+IEpgCmKyyYlNSezLLVI3y6BK+PK4xNsBcdZK742X2RuYFzB0sXIySEhYCIx ZeU5RghbTOLCvfVsXYxcHEICSxklNp+7wgaSEBLoZ5J48jCji5GDg0VAVWL5ExuQMJuAocTU TbPBekUEHCUerp0DVi4sYCtx6/B2dpByXgF7iSuNmiAmp4C+xPevrBAD9SSWXb7DBGLzA4Wv /v3EBHGBvcTMK2fAJvIKCEr8mHwP7EpmAS2JzduaWCFseYnNa94yT2AUmIWkbBaSsllIyhYw Mq9iFE0tTS4oTkrPNdIrTswtLs1L10vOz93ECAnHrzsYlx6zOsQowMGoxMMrsUggWIg1say4 MvcQowQHs5IIr9Y5oBBvSmJlVWpRfnxRaU5q8SFGJg5OqQZGLcu8PVutLLyydqXMFdi19dBE 57QpfwIXerRu5opctny7b1FiQn+Kq2z7s8ia6LSSuHerbj/ZWqVRzMBT8GEm4zdzh5AHd3vX b9zcKMb6JsJ3Sqfa1WK+O5KhXP8OH6sx/LBgZsz5ksP7bvpO1mFlLi31KKnQVi+RU9zo8Lbp 6U9bgT1s33qVWIozEg21mIuKEwGzn50CJQIAAA== On Fri, 28 Feb 2014 14:00:46 -0300 Tobias wrote: > I'm just trying to run this script: > git reset HEAD^ > I'm using git to try to reset the code to a branch behind and zsh > returns this message: > zsh: no matches found: HEAD^ You have the EXTENDED_GLOB option set, in which ^ is a special character. If you don't need it, simply remove it from the start up file where it's turned on or add "unsetopt EXTENDED_GLOB" after whatever code is setting it. If you do need EXTENDED_GLOB for other purposes but don't need that particular syntax, and you have the latest version of zsh, you can turn off that pattern character, disable -p '^' pws