Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
I'm using Vim 6.2.457. Every time I try to edit a new file using "e $filename" or switch buffers with ":bn" or ":bp", I lose the undo stack. Does anyone know how to preserve that?
I can't help, but... (Score:1)
I'm pretty sure they'll be able to help :-) It's one of the best mailing lists out there :-)
Re:I can't help, but... (Score:2)
Thanks! I just subscribed. I should have done that earlier but I'm awfully used to everyone here just knowing their stuff :)
(bad Ovid. No Corinna (private joke))
If you do find an answer. . . (Score:1)
Thanks!
Re:If you do find an answer. . . (Score:2)
As noted below, the fix is to :set hidden. I'm quite relieved to know it's that simple :)
set hidden (Score:1)
With 'nohidden' set, Vim discards the buffer when you leave it. It loses all its session data, like the undo stack. It's also slower if you switch a lot, because it rereads the file to open the buffer when you switch back to a discarded buffer.
If you set 'hidden' Vim will keep the buffer around when you leave it. You won't lose anything, except a little memory for the buffer to live in.
Sometimes I use a box on which I haven't installed my vimrc [manxome.org]
rjbs
Re:set hidden (Score:1)