Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Feature-request
- X-seq: zsh-users 10644
- From: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: Feature-request
- Date: Sat, 26 Aug 2006 11:45:54 -0700
- In-reply-to: <op.tev164roqxq5gl@localhost>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <op.tev164roqxq5gl@localhost>
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.
Messages sorted by:
Reverse Date,
Date,
Thread,
Author