From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8282 invoked from network); 26 Aug 2006 18:46:27 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO,UNPARSEABLE_RELAY autolearn=ham version=3.1.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 26 Aug 2006 18:46:27 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 23544 invoked from network); 26 Aug 2006 18:46:20 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 26 Aug 2006 18:46:20 -0000 Received: (qmail 22477 invoked by alias); 26 Aug 2006 18:46:13 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10644 Received: (qmail 22468 invoked from network); 26 Aug 2006 18:46:13 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 26 Aug 2006 18:46:13 -0000 Received: (qmail 22493 invoked from network); 26 Aug 2006 18:46:13 -0000 Received: from vms048pub.verizon.net (206.46.252.48) by a.mx.sunsite.dk with SMTP; 26 Aug 2006 18:46:11 -0000 Received: from torch.brasslantern.com ([71.121.0.226]) by vms048.mailsrvcs.net (Sun Java System Messaging Server 6.2-4.02 (built Sep 9 2005)) with ESMTPA id <0J4M000MQC4JXC88@vms048.mailsrvcs.net> for zsh-users@sunsite.dk; Sat, 26 Aug 2006 13:45:56 -0500 (CDT) Received: from torch.brasslantern.com (localhost.localdomain [127.0.0.1]) by torch.brasslantern.com (8.13.1/8.13.1) with ESMTP id k7QIjsPA015292 for ; Sat, 26 Aug 2006 11:45:55 -0700 Received: (from schaefer@localhost) by torch.brasslantern.com (8.13.1/8.13.1/Submit) id k7QIjsx8015291 for zsh-users@sunsite.dk; Sat, 26 Aug 2006 11:45:54 -0700 Date: Sat, 26 Aug 2006 11:45:54 -0700 From: Bart Schaefer Subject: Re: Feature-request In-reply-to: To: zsh-users@sunsite.dk Message-id: <060826114554.ZM15290@torch.brasslantern.com> MIME-version: 1.0 X-Mailer: OpenZMail Classic (0.9.2 24April2005) Content-type: text/plain; charset=us-ascii References: Comments: In reply to nik "Feature-request" (Aug 26, 4:29am) On Aug 26, 4:29am, nik wrote: } } 1. shift+tabbing to cycle in reverse order, i.e some sort of reverse } tabbing. Most terminal emulators cannot distinguish shift+tab from tab on input, so you have to work out for yourself how to get shift+tab to send a recognizable key sequence if you want to use that. Alt+tab is also a possibility, but that's often trapped by the window manager. So I personally simply use escape followed by tab. bindkey "^[^I" reverse-menu-complete } 2. Some shortcut to delete till the last punctuation mark. There are several options for this: (1) Change the value of the WORDCHARS variable. (2) Use the select-word-style suite that comes with recent zsh, e.g.: autoload -U select-word-style select-word-style bash (3) Rebind ^W to use vi-backward-kill-word. Details of all of these can be found in the documentation.