From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29593 invoked by alias); 16 Feb 2011 03:51:31 -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: 15807 Received: (qmail 11163 invoked from network); 16 Feb 2011 03:51:29 -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=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received-SPF: none (ns1.primenet.com.au: domain at closedmail.com does not designate permitted sender hosts) From: Bart Schaefer Message-id: <110215195121.ZM32256@torch.brasslantern.com> Date: Tue, 15 Feb 2011 19:51:21 -0800 In-reply-to: Comments: In reply to Thorsten Kampe "Re: Key bindings not working under screen" (Feb 15, 7:59pm) References: <110215074453.ZM31765@torch.brasslantern.com> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-users@zsh.org Subject: Re: Key bindings not working under screen MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Feb 15, 7:59pm, Thorsten Kampe wrote: } } > I further suspect that some of your bindkey settings are always ending } > up in the emacs keymap, even when ZLE is in vi mode. Have you tried } > capturing the bindkey output in a file in each case and diffing them? } } As far as I can see, these are all from my .zshrc (the deleted ones and } the ones before the "->"): That would appear to mean that sourcing your .zshrc file is stopping before reaching the end. Try something like # at the top of .zshrc exec 2> /tmp/zshrc$$ setopt xtrace # at the bottom of .zshrc exec 2>&1 setopt noxtrace See if it ever reaches that last, for one thing. Either way examine the trace file to see if your bindkey commands are ever being executed.