From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2123 invoked by alias); 12 Nov 2010 06:34:53 -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: 15535 Received: (qmail 1859 invoked from network); 12 Nov 2010 06:34:41 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.212.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:subject :message-id:mail-followup-to:references:mime-version:content-type :content-disposition:in-reply-to:user-agent; bh=zKEoxVxww+7FS2HLLtbapwOTIYv70AoLBB+98vMbGfw=; b=mtPgunx3ooqYOvgqxQ+JLodouXGPk3R0H/JID4axSA8wetiT93VIab9YuU2f2h4RVJ TWxWJAZbVULr8MGArfMg43dS8VLKRPiKBll9W+AgAxFVmwSGxy15WibN9bfTSAzJDWOZ NenF62OfctOq7f+Rnsjv1kT6bJdD7vYwN0+rQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mail-followup-to:references :mime-version:content-type:content-disposition:in-reply-to :user-agent; b=sQvud3u4RiQvNG7rWSNNXA4TKUmL30IzGVp9YsnAVqnfIlKYUB60c88Gzc/2gkHpVZ pR2qBzQ+Vbn/NJtVsyVp52IDEgXh/nfALuBn5E2YwJfS301LrnTHRqpKZG5cVaiX+MW8 4lMYPs7O/9UK7442EjWfed1DfXn8DOEdM/KMk= Date: Fri, 12 Nov 2010 17:34:29 +1100 From: Ian Petts To: zsh-users@zsh.org Subject: Re: Strange key binding behaviour change Message-ID: <20101112063429.GC17634@igpvps.jumba.com.au> Mail-Followup-To: zsh-users@zsh.org References: <20101112010808.GB17634@igpvps.jumba.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) > > I have been trying to recall/find the "start zsh without any startup > > files" option in order to start debugging, but so far without success. > > I think you're thinking of zsh -f. Thanks Aaron. That helped me find the issue. The anti-climactic conclusion was that at some point I had set EDITOR=vim in my /etc/environment, which caused zle to default to vi mode. Adding "bindkey -e" to my .zshrc fixed the problem. Regards, Ian.