Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: binding key sequence to command and accept-line
- X-seq: zsh-users 7026
- From: Peter Stephenson <pws@xxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxxxxx>
- Subject: Re: binding key sequence to command and accept-line
- Date: Thu, 29 Jan 2004 12:30:41 +0000
- In-reply-to: "Eric Smith"'s message of "Thu, 29 Jan 2004 11:50:34 +0100." <20040129105034.GA27919@xxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
Eric Smith wrote:
> How would I with a key sequence like for example <esc> r
> print a file? viz.
>
> $ somefile.ps
> `<esc> r'
> $ lpr somefile.ps<accept-line>
Old-style (pre zsh-4):
bindkey -s '^alpr \n'
Probably good enough, although it assumes emacs bindings (the ^a in
particular).
New-style:
lpr-line() {
LBUFFER="lpr $LBUFFER"
zle accept-line
}
zle -N lpr-line
bindkey '\er' lpr-line
More flexible but otherwise pretty much the same.
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
www.mimesweeper.com
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author