begin  quoting Chuck Esterbrook as of Tue, Jun 19, 2007 at 06:38:06AM -0700:
> All I want in life is an MRU file list in a text editor. That is to
> say, I want an on-screen window/panel with a list of Most Recently
> Used files with one click to switch between them (or a hot key to pop
> up a panel and hit 1-9 to choose the file).
> 
> TextMate for the Mac *almost* has one but it blows away the list any
> time it detects a new file in the project directory. A fix is not
> coming for months.
> 
> I'm on Mac, but I have X too.
> 
> Btw I want this because I always end up editing 2 - 5 files for
> whatever bugfix or enhancement I'm working on. Being able to quickly
> and reliably flip between these files would be great.
> 
> Suggestions?

Perhaps a vim or emacs macro that builds up a list using "ls -t" ?

....hm. With vim, I can edit a directory, and then choose the sort
order to be "sort by date".

I can also use the :ls to list files known about in my vim editing,
and can choose them with :b.

If I type "vim foo bar baz", I can use :ls like so:

:ls
  1 %a-  "foo"                          line 4
  2      "bar"                          line 0
  3      "baz"                          line 0

If I type ":e blahblah" and then do :ls, I see:

:ls
  2      "bar"                          line 0
  3      "baz"                          line 0
  4 %a   "blahblah"                     line 1

And I can go back to other entries with :b and the number, so :b3
changes my buffer, and :ls shows it again:

:ls
  2      "bar"                          line 0
  3 %a   "baz"                          line 1
  4 #    "blahblah"                     line 1

I don't know how close this is to what you're looking for...

-- 
No New Macros.
Stewart Stremler

-- 
[email protected]
http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-lpsg

Reply via email to