[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

[ANN] vimrecover 1.0.0 Released

Leslie Viljoen

6/11/2008 11:51:00 AM

vimrecover version 1.0.0 has been released!

* http://rubyforge.org/projects/v...

This package provides a handy command to help you recover from Vim
recovery files.

Vim makes .swp files as you edit your files so that if an edit session
crashes you
can recover the latest changes you haven't saved. Unfortunately
though, there's no
easy way to compare a saved file with the recovery file, so if a
session does crash
you are often left with many .swp files that you have to save under
new names one
by one and compare to the original files.

vimrecover searches for swap files in the current directory, converts them to
files that can be compared to the original files, lets you compare them with
meld, deletes them if they are the same as the original files and generally
helps you clean up the mess.

vimrecover is an interactive command-line program.

2 Answers

Gregory Seidman

6/11/2008 1:10:00 PM

0

On Wed, Jun 11, 2008 at 08:51:02PM +0900, Leslie Viljoen wrote:
> vimrecover version 1.0.0 has been released!
>
> * http://rubyforge.org/projects/v...
>
> This package provides a handy command to help you recover from Vim
> recovery files.
[...]
> vimrecover is an interactive command-line program.

You're working too hard. In vim :help DiffOrig

--Greg


Leslie Viljoen

6/11/2008 1:38:00 PM

0

On Wed, Jun 11, 2008 at 3:09 PM, Gregory Seidman
<gsslist+ruby@anthropohedron.net> wrote:
> On Wed, Jun 11, 2008 at 08:51:02PM +0900, Leslie Viljoen wrote:
>> vimrecover version 1.0.0 has been released!
>>
>> * http://rubyforge.org/projects/v...
>>
>> This package provides a handy command to help you recover from Vim
>> recovery files.
> [...]
>> vimrecover is an interactive command-line program.
>
> You're working too hard. In vim :help DiffOrig

Hmmm, and I had been searching for something like that for weeks.
I think vimrecover will end up being faster still.

Although it's hardcoded to use Meld at the moment and
I really need to fix that.