zsh-users
 help / color / mirror / code / Atom feed
From: Oliver Kiddle <okiddle@yahoo.co.uk>
To: Eric Smith <es@fruitcom.com>
Cc: Zsh Users <zsh-users@sunsite.dk>
Subject: Re: function to return most recently modified file to command line
Date: Tue, 23 Dec 2003 02:08:36 +0100	[thread overview]
Message-ID: <1139.1072141716@athlon> (raw)
In-Reply-To: <20031222235658.GA18521@fruitcom.com>

Eric Smith wrote:
> I would like to have a function ideally to bind to a key combination
> that returns the most recent file to the command line.
> 
> Like I might type
> $ acroread <Alt-B>

I do this with a completion widget:
zstyle ':completion:most-recent-file:*' match-original both
zstyle ':completion:most-recent-file::::' completer _menu _files _match
zstyle ':completion:most-recent-file:*' file-sort modification
zstyle ':completion:most-recent-file:*' file-patterns '*(.):normal\ files'
zstyle ':completion:most-recent-file:*' hidden all
bindkey '^Xm' most-recent-file
zle -C most-recent-file menu-complete _generic

> Specify the type of file say `pdf' or `txt' for the latest instance
> of that type of file.

The _match bit allows that: type *.pdf and ^Xm will get you the most
recent .pdf file.

> Also the function could automatically add an <enter> after returning the
> filename.

You can probably use a normal zle widget which invokes this followed by
accept-line.

You'd lose the feature that invoking this multiple times cycles through
files in modification order though.

I'm now away for a couple of weeks, by the way. Have a good Christmas
everyone.

Oliver


  reply	other threads:[~2003-12-23  1:05 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-12-22 23:56 Eric Smith
2003-12-23  1:08 ` Oliver Kiddle [this message]
2004-01-11 16:15   ` function to return most recently modified file to command line - cycling in both directions Eric Smith - Fruitcom
2004-01-14 16:07     ` Oliver Kiddle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1139.1072141716@athlon \
    --to=okiddle@yahoo.co.uk \
    --cc=es@fruitcom.com \
    --cc=zsh-users@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).