blob: 19851b5306a07d47373d35df5b6b0158eac6278b [file] [log] [blame]
Yochem van Rosmalen20904052025-06-03 20:54:33 +02001*usr_11.txt* For Vim version 9.1. Last change: 2025 Jun 03
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3 VIM USER MANUAL - by Bram Moolenaar
4
5 Recovering from a crash
6
7
8Did your computer crash? And you just spent hours editing? Don't panic! Vim
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +01009stores enough information to be able to restore most of your work. This
10chapter shows you how to get your work back and explains how the swap file is
11used.
Bram Moolenaar071d4272004-06-13 20:20:40 +000012
13|11.1| Basic recovery
14|11.2| Where is the swap file?
15|11.3| Crashed or not?
16|11.4| Further reading
17
18 Next chapter: |usr_12.txt| Clever tricks
19 Previous chapter: |usr_10.txt| Making big changes
20Table of contents: |usr_toc.txt|
21
22==============================================================================
23*11.1* Basic recovery
24
25In most cases recovering a file is quite simple, assuming you know which file
26you were editing (and the harddisk is still working). Start Vim on the file,
27with the "-r" argument added: >
28
29 vim -r help.txt
30
31Vim will read the swap file (used to store text you were editing) and may read
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +020032bits and pieces of the original file. If Vim recovered your changes you will
33see these messages (with different file names, of course):
Bram Moolenaar071d4272004-06-13 20:20:40 +000034
35 Using swap file ".help.txt.swp" ~
36 Original file "~/vim/runtime/doc/help.txt" ~
Bram Moolenaar9ba0eb82005-06-13 22:28:56 +000037 Recovery completed. You should check if everything is OK. ~
Bram Moolenaar071d4272004-06-13 20:20:40 +000038 (You might want to write out this file under another name ~
39 and run diff with the original file to check for changes) ~
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +020040 You may want to delete the .swp file now. ~
Bram Moolenaar071d4272004-06-13 20:20:40 +000041
42To be on the safe side, write this file under another name: >
43
44 :write help.txt.recovered
45
46Compare the file with the original file to check if you ended up with what you
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +020047expected. Vimdiff is very useful for this |08.7|. For example: >
48
49 :write help.txt.recovered
50 :edit #
51 :diffsp help.txt
52
53Watch out for the original file to contain a more recent version (you saved
54the file just before the computer crashed). And check that no lines are
55missing (something went wrong that Vim could not recover).
Bram Moolenaar071d4272004-06-13 20:20:40 +000056 If Vim produces warning messages when recovering, read them carefully.
57This is rare though.
58
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +020059If the recovery resulted in text that is exactly the same as the file
60contents, you will get this message:
61
62 Using swap file ".help.txt.swp" ~
63 Original file "~/vim/runtime/doc/help.txt" ~
64 Recovery completed. Buffer contents equals file contents. ~
65 You may want to delete the .swp file now. ~
66
67This usually happens if you already recovered your changes, or you wrote the
68file after making changes. It is safe to delete the swap file now.
69
70It is normal that the last few changes can not be recovered. Vim flushes the
Bram Moolenaar071d4272004-06-13 20:20:40 +000071changes to disk when you don't type for about four seconds, or after typing
72about two hundred characters. This is set with the 'updatetime' and
73'updatecount' options. Thus when Vim didn't get a chance to save itself when
74the system went down, the changes after the last flush will be lost.
75
76If you were editing without a file name, give an empty string as argument: >
77
78 vim -r ""
79
80You must be in the right directory, otherwise Vim can't find the swap file.
81
82==============================================================================
83*11.2* Where is the swap file?
84
85Vim can store the swap file in several places. Normally it is in the same
86directory as the original file. To find it, change to the directory of the
87file, and use: >
88
89 vim -r
90
91Vim will list the swap files that it can find. It will also look in other
92directories where the swap file for files in the current directory may be
93located. It will not find swap files in any other directories though, it
94doesn't search the directory tree.
95 The output could look like this:
96
97 Swap files found: ~
98 In current directory: ~
99 1. .main.c.swp ~
100 owned by: mool dated: Tue May 29 21:00:25 2001 ~
101 file name: ~mool/vim/vim6/src/main.c ~
102 modified: YES ~
103 user name: mool host name: masaka.moolenaar.net ~
104 process ID: 12525 ~
105 In directory ~/tmp: ~
106 -- none -- ~
107 In directory /var/tmp: ~
108 -- none -- ~
109 In directory /tmp: ~
110 -- none -- ~
111
112If there are several swap files that look like they may be the one you want to
113use, a list is given of these swap files and you are requested to enter the
114number of the one you want to use. Carefully look at the dates to decide
115which one you want to use.
116 In case you don't know which one to use, just try them one by one and check
117the resulting files if they are what you expected.
118
119
120USING A SPECIFIC SWAP FILE
121
122If you know which swap file needs to be used, you can recover by giving the
Bram Moolenaar314dd792019-02-03 15:27:20 +0100123swap file name. Vim will then find out the name of the original file from
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124the swap file.
125
126Example: >
127 vim -r .help.txt.swo
128
129This is also handy when the swap file is in another directory than expected.
Yochem van Rosmalen20904052025-06-03 20:54:33 +0200130Vim recognizes files with the pattern "*.s[uvw][a-z]" as swap files.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100131
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132If this still does not work, see what file names Vim reports and rename the
133files accordingly. Check the 'directory' option to see where Vim may have
134put the swap file.
135
136 Note:
137 Vim tries to find the swap file by searching the directories in the
138 'dir' option, looking for files that match "filename.sw?". If
139 wildcard expansion doesn't work (e.g., when the 'shell' option is
140 invalid), Vim does a desperate try to find the file "filename.swp".
141 If that fails too, you will have to give the name of the swapfile
142 itself to be able to recover the file.
143
144==============================================================================
145*11.3* Crashed or not? *ATTENTION* *E325*
146
147Vim tries to protect you from doing stupid things. Suppose you innocently
148start editing a file, expecting the contents of the file to show up. Instead,
149Vim produces a very long message:
150
151 E325: ATTENTION ~
152 Found a swap file by the name ".main.c.swp" ~
153 owned by: mool dated: Tue May 29 21:09:28 2001 ~
154 file name: ~mool/vim/vim6/src/main.c ~
155 modified: no ~
156 user name: mool host name: masaka.moolenaar.net ~
157 process ID: 12559 (still running) ~
158 While opening file "main.c" ~
159 dated: Tue May 29 19:46:12 2001 ~
160 ~
161 (1) Another program may be editing the same file. ~
162 If this is the case, be careful not to end up with two ~
163 different instances of the same file when making changes. ~
164 Quit, or continue with caution. ~
165 ~
166 (2) An edit session for this file crashed. ~
167 If this is the case, use ":recover" or "vim -r main.c" ~
168 to recover the changes (see ":help recovery"). ~
169 If you did this already, delete the swap file ".main.c.swp" ~
170 to avoid this message. ~
171
172You get this message, because, when starting to edit a file, Vim checks if a
173swap file already exists for that file. If there is one, there must be
174something wrong. It may be one of these two situations.
175
1761. Another edit session is active on this file. Look in the message for the
177 line with "process ID". It might look like this:
178
179 process ID: 12559 (still running) ~
180
181 The text "(still running)" indicates that the process editing this file
182 runs on the same computer. When working on a non-Unix system you will not
183 get this extra hint. When editing a file over a network, you may not see
184 the hint, because the process might be running on another computer. In
185 those two cases you must find out what the situation is yourself.
186 If there is another Vim editing the same file, continuing to edit will
187 result in two versions of the same file. The one that is written last will
188 overwrite the other one, resulting in loss of changes. You better quit
189 this Vim.
190
1912. The swap file might be the result from a previous crash of Vim or the
192 computer. Check the dates mentioned in the message. If the date of the
193 swap file is newer than the file you were editing, and this line appears:
194
195 modified: YES ~
196
197 Then you very likely have a crashed edit session that is worth recovering.
198 If the date of the file is newer than the date of the swap file, then
199 either it was changed after the crash (perhaps you recovered it earlier,
200 but didn't delete the swap file?), or else the file was saved before the
201 crash but after the last write of the swap file (then you're lucky: you
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000202 don't even need that old swap file). Vim will warn you for this with this
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203 extra line:
204
205 NEWER than swap file! ~
206
207
Bram Moolenaar67cf86b2019-04-28 22:25:38 +0200208NOTE that in the following situation Vim knows the swap file is not useful and
209will automatically delete it:
210- The file is a valid swap file (Magic number is correct).
211- The flag that the file was modified is not set.
212- The process is not running.
213
Bram Moolenaar73fef332020-06-21 22:12:03 +0200214You can programmatically deal with this situation with the |FileChangedShell|
Bram Moolenaarade0d392020-01-21 22:33:58 +0100215autocommand event.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +0200216
Bram Moolenaarade0d392020-01-21 22:33:58 +0100217
218UNREADABLE SWAP FILE ~
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
220Sometimes the line
221
222 [cannot be read] ~
223
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000224will appear under the name of the swap file. This can be good or bad,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225depending on circumstances.
226
227It is good if a previous editing session crashed without having made any
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000228changes to the file. Then a directory listing of the swap file will show
229that it has zero bytes. You may delete it and proceed.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000231It is slightly bad if you don't have read permission for the swap file. You
232may want to view the file read-only, or quit. On multi-user systems, if you
Bram Moolenaar071d4272004-06-13 20:20:40 +0000233yourself did the last changes under a different login name, a logout
Bram Moolenaar13fcaaf2005-04-15 21:13:42 +0000234followed by a login under that other name might cure the "read error". Or
Bram Moolenaar071d4272004-06-13 20:20:40 +0000235else you might want to find out who last edited (or is editing) the file and
236have a talk with them.
237
238It is very bad if it means there is a physical read error on the disk
239containing the swap file. Fortunately, this almost never happens.
240You may want to view the file read-only at first (if you can), to see the
241extent of the changes that were "forgotten". If you are the one in charge of
242that file, be prepared to redo your last changes.
243
244
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100245WHAT TO DO? *swap-exists-choices*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246
Bram Moolenaar7dda86f2018-04-20 22:36:41 +0200247If dialogs are supported you will be asked to select one of six choices:
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248
249 Swap file ".main.c.swp" already exists! ~
250 [O]pen Read-Only, (E)dit anyway, (R)ecover, (Q)uit, (A)bort, (D)elete it: ~
251
252O Open the file readonly. Use this when you just want to view the file and
253 don't need to recover it. You might want to use this when you know someone
254 else is editing the file, but you just want to look in it and not make
255 changes.
256
257E Edit the file anyway. Use this with caution! If the file is being edited
258 in another Vim, you might end up with two versions of the file. Vim will
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200259 try to warn you when this happens, but better be safe than sorry.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000260
261R Recover the file from the swap file. Use this if you know that the swap
262 file contains changes that you want to recover.
263
264Q Quit. This avoids starting to edit the file. Use this if there is another
265 Vim editing the same file.
266 When you just started Vim, this will exit Vim. When starting Vim with
267 files in several windows, Vim quits only if there is a swap file for the
268 first one. When using an edit command, the file will not be loaded and you
269 are taken back to the previously edited file.
270
271A Abort. Like Quit, but also abort further commands. This is useful when
272 loading a script that edits several files, such as a session with multiple
273 windows.
274
275D Delete the swap file. Use this when you are sure you no longer need it.
276 For example, when it doesn't contain changes, or when the file itself is
277 newer than the swap file.
278 On Unix this choice is only offered when the process that created the
279 swap file does not appear to be running.
280
281If you do not get the dialog (you are running a version of Vim that does not
282support it), you will have to do it manually. To recover the file, use this
283command: >
284
285 :recover
286
287
288Vim cannot always detect that a swap file already exists for a file. This is
289the case when the other edit session puts the swap files in another directory
290or when the path name for the file is different when editing it on different
291machines. Therefore, don't rely on Vim always warning you.
292
293If you really don't want to see this message, you can add the 'A' flag to the
294'shortmess' option. But it's very unusual that you need this.
295
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200296For remarks about encryption and the swap file, see |:recover-crypt|.
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100297For programmatic access to the swap file, see |swapinfo()|.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200298
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299==============================================================================
300*11.4* Further reading
301
302|swap-file| An explanation about where the swap file will be created and
303 what its name is.
304|:preserve| Manually flushing the swap file to disk.
305|:swapname| See the name of the swap file for the current file.
306'updatecount' Number of key strokes after which the swap file is flushed to
307 disk.
308'updatetime' Timeout after which the swap file is flushed to disk.
309'swapsync' Whether the disk is synced when the swap file is flushed.
310'directory' List of directory names where to store the swap file.
311'maxmem' Limit for memory usage before writing text to the swap file.
312'maxmemtot' Same, but for all files in total.
313
314==============================================================================
315
316Next chapter: |usr_12.txt| Clever tricks
317
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200318Copyright: see |manual-copyright| vim:tw=78:ts=8:noet:ft=help:norl: