From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8914 invoked by alias); 3 Sep 2013 15:55:55 -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: 31690 Received: (qmail 21517 invoked from network); 3 Sep 2013 15:55:49 -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: <130903085608.ZM27488@torch.brasslantern.com> Date: Tue, 03 Sep 2013 08:56:08 -0700 In-reply-to: Comments: In reply to Cary Lewis "bind key information - filename completion" (Sep 3, 11:47am) References: X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: Cary Lewis , zsh-workers@zsh.org Subject: Re: bind key information - filename completion MIME-version: 1.0 Content-type: text/plain; charset=us-ascii On Sep 3, 11:47am, Cary Lewis wrote: } } My question is this: Can I someone configure zsh to use vi style of } navigation (j is down, k is up, h is left, l is right)? It should work to do this: bindkey -M menuselect j down-line-or-history bindkey -M menuselect k up-line-or-history bindkey -M menuselect l forward-char bindkey -M menuselect h backward-char You may also need: bindkey -M listscroll j down-line-or-history bindkey -M listscroll k up-line-or-history Both of these keymaps are explained under "The zsh/complist Module" in the manual.