Vim Tips Wiki
Advertisement
Tip 1517 Printable Monobook Previous Next

[[Vim_Tips_Wiki:New_tips{{{subpage}}}#Swap file "..."already exists! - so diff it|created]] September 11, 2007 · complexity intermediate · author Richard Bronosky · version 7.0


When opening a file (in this case geocode.py) in Vim, I regularly encounter messages like:

E325: ATTENTION
Found a swap file by the name ".geocode.py.swp"
          owned by: rbronosky   dated: Fri Sep  7 17:17:37 2007
         file name: geocode.py
          modified: YES
         user name: rbronosky
        process ID: 6490
While opening file "geocode.py"
             dated: Fri Sep  7 17:17:04 2007
(1) Another program may be editing the same file.
    If this is the case, be careful not to end up with two
    different instances of the same file when making changes.
    Quit, or continue with caution.
(2) An edit session for this file crashed.
    If this is the case, use ":recover" or "vim -r geocode.py"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file ".geocode.py.swp"
    to avoid this message.
Swap file ".geocode.py.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:

This is the result of not properly closing an open buffer, usually because of a lost ssh connection. If there where unsaved changes, they can be recovered from this swap file. In order to know if this swap file is of value to me, I need to do some investigating. I have developed a system for resolving this quickly with as few keystrokes as possible.

  1. r # at the prompt hit "r" to recover the swap file
  2. :sav! /tmp/%
  3. :vs
  4. :diffthis
  5. CTRL-W_l
  6. :bp
  7. e # at the prompt hit "e" to edit anyway
  8. :diffthis

The result will be a vertically split screen with the swap file on the left and the regular file on the right. You will be in diff mode and if the files are identical they will both be folded into one line.

Sure, this would make a good script, but I am a big fan of "learn to do it by hand!". That way you can do it on any system, and you can use each of the little steps to aid your daily vimming.

If you want to know more about the commands used, use :help, for example:

Comments

See also :help :DiffOrig.


Advertisement