NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
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)