blob: b6c9809c2c009402a928205a56b1ae87a129fc42 [file] [log] [blame]
Bram Moolenaard09091d2019-01-17 16:07:22 +01001*undo.txt* For Vim version 8.1. Last change: 2019 Jan 04
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7Undo and redo *undo-redo*
8
9The basics are explained in section |02.5| of the user manual.
10
111. Undo and redo commands |undo-commands|
122. Two ways of undo |undo-two-ways|
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000133. Undo blocks |undo-blocks|
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000144. Undo branches |undo-branches|
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200155. Undo persistence |undo-persistence|
166. Remarks about undo |undo-remarks|
Bram Moolenaar071d4272004-06-13 20:20:40 +000017
18==============================================================================
191. Undo and redo commands *undo-commands*
20
21<Undo> or *undo* *<Undo>* *u*
22u Undo [count] changes. {Vi: only one level}
23
24 *:u* *:un* *:undo*
25:u[ndo] Undo one change. {Vi: only one level}
Bram Moolenaar55debbe2010-05-23 23:34:36 +020026 *E830*
Bram Moolenaarefd2bf12006-03-16 21:41:35 +000027:u[ndo] {N} Jump to after change number {N}. See |undo-branches|
28 for the meaning of {N}. {not in Vi}
29
Bram Moolenaar071d4272004-06-13 20:20:40 +000030 *CTRL-R*
31CTRL-R Redo [count] changes which were undone. {Vi: redraw
32 screen}
33
34 *:red* *:redo* *redo*
35:red[o] Redo one change which was undone. {Vi: no redo}
36
37 *U*
Bram Moolenaar5302d9e2011-09-14 17:55:08 +020038U Undo all latest changes on one line, the line where
39 the latest change was made. |U| itself also counts as
40 a change, and thus |U| undoes a previous |U|.
41 {Vi: while not moved off of the last modified line}
Bram Moolenaar071d4272004-06-13 20:20:40 +000042
43The last changes are remembered. You can use the undo and redo commands above
44to revert the text to how it was before each change. You can also apply the
45changes again, getting back the text before the undo.
46
47The "U" command is treated by undo/redo just like any other command. Thus a
48"u" command undoes a "U" command and a 'CTRL-R' command redoes it again. When
49mixing "U", "u" and 'CTRL-R' you will notice that the "U" command will
50restore the situation of a line to before the previous "U" command. This may
51be confusing. Try it out to get used to it.
52The "U" command will always mark the buffer as changed. When "U" changes the
53buffer back to how it was without changes, it is still considered changed.
54Use "u" to undo changes until the buffer becomes unchanged.
55
56==============================================================================
572. Two ways of undo *undo-two-ways*
58
59How undo and redo commands work depends on the 'u' flag in 'cpoptions'.
Bram Moolenaar7cba6c02013-09-05 22:13:31 +020060There is the Vim way ('u' excluded) and the Vi-compatible way ('u' included).
Bram Moolenaar071d4272004-06-13 20:20:40 +000061In the Vim way, "uu" undoes two changes. In the Vi-compatible way, "uu" does
62nothing (undoes an undo).
63
64'u' excluded, the Vim way:
65You can go back in time with the undo command. You can then go forward again
66with the redo command. If you make a new change after the undo command,
67the redo will not be possible anymore.
68
69'u' included, the Vi-compatible way:
70The undo command undoes the previous change, and also the previous undo command.
71The redo command repeats the previous undo command. It does NOT repeat a
72change command, use "." for that.
73
74Examples Vim way Vi-compatible way ~
75"uu" two times undo no-op
76"u CTRL-R" no-op two times undo
77
78Rationale: Nvi uses the "." command instead of CTRL-R. Unfortunately, this
79 is not Vi compatible. For example "dwdwu." in Vi deletes two
80 words, in Nvi it does nothing.
81
82==============================================================================
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000833. Undo blocks *undo-blocks*
84
85One undo command normally undoes a typed command, no matter how many changes
86that command makes. This sequence of undo-able changes forms an undo block.
87Thus if the typed key(s) call a function, all the commands in the function are
88undone together.
89
90If you want to write a function or script that doesn't create a new undoable
91change but joins in with the previous change use this command:
92
Bram Moolenaar57657d82006-04-21 22:12:41 +000093 *:undoj* *:undojoin* *E790*
Bram Moolenaare224ffa2006-03-01 00:01:28 +000094:undoj[oin] Join further changes with the previous undo block.
95 Warning: Use with care, it may prevent the user from
Bram Moolenaar57657d82006-04-21 22:12:41 +000096 properly undoing changes. Don't use this after undo
97 or redo.
Bram Moolenaare224ffa2006-03-01 00:01:28 +000098 {not in Vi}
99
Bram Moolenaar822ff862014-06-12 21:46:14 +0200100This is most useful when you need to prompt the user halfway through a change.
101For example in a function that calls |getchar()|. Do make sure that there was
102a related change before this that you must join with.
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000103
104This doesn't work by itself, because the next key press will start a new
105change again. But you can do something like this: >
106
107 :undojoin | delete
108
109After this an "u" command will undo the delete command and the previous
110change.
111
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100112To do the opposite, break a change into two undo blocks, in Insert mode use
113CTRL-G u. This is useful if you want an insert command to be undoable in
114parts. E.g., for each sentence. |i_CTRL-G_u|
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200115Setting the value of 'undolevels' also breaks undo. Even when the new value
116is equal to the old value.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100117
Bram Moolenaare224ffa2006-03-01 00:01:28 +0000118==============================================================================
Bram Moolenaar18144c82006-04-12 21:52:12 +00001194. Undo branches *undo-branches* *undo-tree*
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000120
Bram Moolenaar76916e62006-03-21 21:23:25 +0000121Above we only discussed one line of undo/redo. But it is also possible to
122branch off. This happens when you undo a few changes and then make a new
123change. The undone changes become a branch. You can go to that branch with
124the following commands.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000125
Bram Moolenaarc01140a2006-03-24 22:21:52 +0000126This is explained in the user manual: |usr_32.txt|.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000127
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000128 *:undol* *:undolist*
129:undol[ist] List the leafs in the tree of changes. Example:
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100130 number changes when saved ~
131 88 88 2010/01/04 14:25:53
132 108 107 08/07 12:47:51
133 136 46 13:33:01 7
134 166 164 3 seconds ago
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000135
136 The "number" column is the change number. This number
137 continuously increases and can be used to identify a
138 specific undo-able change, see |:undo|.
139 The "changes" column is the number of changes to this
140 leaf from the root of the tree.
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100141 The "when" column is the date and time when this
142 change was made. The four possible formats are:
143 N seconds ago
144 HH:MM:SS hour, minute, seconds
145 MM/DD HH:MM:SS idem, with month and day
146 YYYY/MM/DD HH:MM:SS idem, with year
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200147 The "saved" column specifies, if this change was
148 written to disk and which file write it was. This can
Bram Moolenaar4a748032010-09-30 21:47:56 +0200149 be used with the |:later| and |:earlier| commands.
Bram Moolenaara800b422010-06-27 01:15:55 +0200150 For more details use the |undotree()| function.
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000151
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000152 *g-*
153g- Go to older text state. With a count repeat that many
154 times. {not in Vi}
155 *:ea* *:earlier*
156:earlier {count} Go to older text state {count} times.
157:earlier {N}s Go to older text state about {N} seconds before.
158:earlier {N}m Go to older text state about {N} minutes before.
159:earlier {N}h Go to older text state about {N} hours before.
Bram Moolenaar730cde92010-06-27 05:18:54 +0200160:earlier {N}d Go to older text state about {N} days before.
161
162:earlier {N}f Go to older text state {N} file writes before.
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200163 When changes were made since the last write
Bram Moolenaar730cde92010-06-27 05:18:54 +0200164 ":earlier 1f" will revert the text to the state when
165 it was written. Otherwise it will go to the write
166 before that.
167 When at the state of the first file write, or when
168 the file was not written, ":earlier 1f" will go to
169 before the first change.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000170
171 *g+*
172g+ Go to newer text state. With a count repeat that many
173 times. {not in Vi}
174 *:lat* *:later*
175:later {count} Go to newer text state {count} times.
176:later {N}s Go to newer text state about {N} seconds later.
177:later {N}m Go to newer text state about {N} minutes later.
178:later {N}h Go to newer text state about {N} hours later.
Bram Moolenaar730cde92010-06-27 05:18:54 +0200179:later {N}d Go to newer text state about {N} days later.
180
181:later {N}f Go to newer text state {N} file writes later.
182 When at the state of the last file write, ":later 1f"
183 will go to the newest text state.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000184
Bram Moolenaarefd2bf12006-03-16 21:41:35 +0000185
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000186Note that text states will become unreachable when undo information is cleared
187for 'undolevels'.
188
189Don't be surprised when moving through time shows multiple changes to take
190place at a time. This happens when moving through the undo tree and then
191making a new change.
192
193EXAMPLE
194
195Start with this text:
196 one two three ~
197
198Delete the first word by pressing "x" three times:
199 ne two three ~
200 e two three ~
201 two three ~
202
203Now undo that by pressing "u" three times:
204 e two three ~
205 ne two three ~
206 one two three ~
207
208Delete the second word by pressing "x" three times:
209 one wo three ~
210 one o three ~
211 one three ~
212
213Now undo that by using "g-" three times:
214 one o three ~
215 one wo three ~
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000216 two three ~
217
218You are now back in the first undo branch, after deleting "one". Repeating
219"g-" will now bring you back to the original text:
220 e two three ~
221 ne two three ~
222 one two three ~
223
224Jump to the last change with ":later 1h":
225 one three ~
226
227And back to the start again with ":earlier 1h":
228 one two three ~
229
230
231Note that using "u" and CTRL-R will not get you to all possible text states
232while repeating "g-" and "g+" does.
233
234==============================================================================
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002355. Undo persistence *undo-persistence* *persistent-undo*
236
237When unloading a buffer Vim normally destroys the tree of undos created for
238that buffer. By setting the 'undofile' option, Vim will automatically save
239your undo history when you write a file and restore undo history when you edit
240the file again.
241
242The 'undofile' option is checked after writing a file, before the BufWritePost
243autocommands. If you want to control what files to write undo information
244for, you can use a BufWritePre autocommand: >
245 au BufWritePre /tmp/* setlocal noundofile
246
247Vim saves undo trees in a separate undo file, one for each edited file, using
248a simple scheme that maps filesystem paths directly to undo files. Vim will
249detect if an undo file is no longer synchronized with the file it was written
250for (with a hash of the file contents) and ignore it when the file was changed
Bram Moolenaar05365702010-10-27 18:34:44 +0200251after the undo file was written, to prevent corruption. An undo file is also
Bram Moolenaarbaca7f72013-09-22 14:42:24 +0200252ignored if its owner differs from the owner of the edited file, except when
253the owner of the undo file is the current user. Set 'verbose' to get a
254message about that when opening a file.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200255
256Undo files are normally saved in the same directory as the file. This can be
257changed with the 'undodir' option.
258
Bram Moolenaara3ff49f2010-05-30 22:48:02 +0200259When the file is encrypted, the text in the undo file is also crypted. The
260same key and method is used. |encryption|
261
Bram Moolenaard09091d2019-01-17 16:07:22 +0100262Note that text properties are not stored in the undo file. You can restore
263text properties so long as a buffer is loaded, but you cannot restore them
264from an undo file. Rationale: It would require the associated text property
265types to be defined in exactly the same was as before, which cannot be
266guaranteed.
267
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200268You can also save and restore undo histories by using ":wundo" and ":rundo"
269respectively:
270 *:wundo* *:rundo*
271:wundo[!] {file}
272 Write undo history to {file}.
273 When {file} exists and it does not look like an undo file
274 (the magic number at the start of the file is wrong), then
275 this fails, unless the ! was added.
276 If it exists and does look like an undo file it is
Bram Moolenaarb8ff1fb2012-02-04 21:59:01 +0100277 overwritten. If there is no undo-history, nothing will be
278 written.
279 Implementation detail: Overwriting happens by first deleting
280 the existing file and then creating a new file with the same
281 name. So it is not possible to overwrite an existing undofile
282 in a write-protected directory.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200283 {not in Vi}
284
285:rundo {file} Read undo history from {file}.
286 {not in Vi}
287
288You can use these in autocommands to explicitly specify the name of the
289history file. E.g.: >
290
Bram Moolenaara17d4c12010-05-30 18:30:36 +0200291 au BufReadPost * call ReadUndo()
292 au BufWritePost * call WriteUndo()
293 func ReadUndo()
294 if filereadable(expand('%:h'). '/UNDO/' . expand('%:t'))
295 rundo %:h/UNDO/%:t
296 endif
297 endfunc
298 func WriteUndo()
299 let dirname = expand('%:h') . '/UNDO'
300 if !isdirectory(dirname)
301 call mkdir(dirname)
302 endif
303 wundo %:h/UNDO/%:t
304 endfunc
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200305
306You should keep 'undofile' off, otherwise you end up with two undo files for
307every write.
Bram Moolenaara17d4c12010-05-30 18:30:36 +0200308
309You can use the |undofile()| function to find out the file name that Vim would
310use.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200311
312Note that while reading/writing files and 'undofile' is set most errors will
313be silent, unless 'verbose' is set. With :wundo and :rundo you will get more
314error messages, e.g., when the file cannot be read or written.
315
316NOTE: undo files are never deleted by Vim. You need to delete them yourself.
317
318Reading an existing undo file may fail for several reasons:
319*E822* It cannot be opened, because the file permissions don't allow it.
320*E823* The magic number at the start of the file doesn't match. This usually
321 means it is not an undo file.
322*E824* The version number of the undo file indicates that it's written by a
323 newer version of Vim. You need that newer version to open it. Don't
324 write the buffer if you want to keep the undo info in the file.
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200325"File contents changed, cannot use undo info"
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200326 The file text differs from when the undo file was written. This means
Bram Moolenaar7db5fc82010-05-24 11:59:29 +0200327 the undo file cannot be used, it would corrupt the text. This also
328 happens when 'encoding' differs from when the undo file was written.
Bram Moolenaar9db58062010-05-29 20:33:07 +0200329*E825* The undo file does not contain valid contents and cannot be used.
Bram Moolenaar56be9502010-06-06 14:20:26 +0200330*E826* The undo file is encrypted but decryption failed.
331*E827* The undo file is encrypted but this version of Vim does not support
332 encryption. Open the file with another Vim.
333*E832* The undo file is encrypted but 'key' is not set, the text file is not
334 encrypted. This would happen if the text file was written by Vim
335 encrypted at first, and later overwritten by not encrypted text.
336 You probably want to delete this undo file.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200337"Not reading undo file, owner differs"
338 The undo file is owned by someone else than the owner of the text
339 file. For safety the undo file is not used.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200340
341Writing an undo file may fail for these reasons:
342*E828* The file to be written cannot be created. Perhaps you do not have
343 write permissions in the directory.
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200344"Cannot write undo file in any directory in 'undodir'"
345 None of the directories in 'undodir' can be used.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200346"Will not overwrite with undo file, cannot read"
347 A file exists with the name of the undo file to be written, but it
348 cannot be read. You may want to delete this file or rename it.
349"Will not overwrite, this is not an undo file"
350 A file exists with the name of the undo file to be written, but it
351 does not start with the right magic number. You may want to delete
352 this file or rename it.
Bram Moolenaar24ea3ba2010-09-19 19:01:21 +0200353"Skipping undo file write, nothing to undo"
354 There is no undo information to be written, nothing has been changed
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +0200355 or 'undolevels' is negative.
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200356*E829* An error occurred while writing the undo file. You may want to try
357 again.
358
359==============================================================================
3606. Remarks about undo *undo-remarks*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
362The number of changes that are remembered is set with the 'undolevels' option.
363If it is zero, the Vi-compatible way is always used. If it is negative no
364undo is possible. Use this if you are running out of memory.
365
Bram Moolenaar945e2db2010-06-05 17:43:32 +0200366 *clear-undo*
367When you set 'undolevels' to -1 the undo information is not immediately
368cleared, this happens at the next change. To force clearing the undo
369information you can use these commands: >
370 :let old_undolevels = &undolevels
371 :set undolevels=-1
372 :exe "normal a \<BS>\<Esc>"
373 :let &undolevels = old_undolevels
374 :unlet old_undolevels
375
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376Marks for the buffer ('a to 'z) are also saved and restored, together with the
377text. {Vi does this a little bit different}
378
379When all changes have been undone, the buffer is not considered to be changed.
380It is then possible to exit Vim with ":q" instead of ":q!" {not in Vi}. Note
381that this is relative to the last write of the file. Typing "u" after ":w"
382actually changes the buffer, compared to what was written, so the buffer is
383considered changed then.
384
385When manual |folding| is being used, the folds are not saved and restored.
386Only changes completely within a fold will keep the fold as it was, because
387the first and last line of the fold don't change.
388
389The numbered registers can also be used for undoing deletes. Each time you
390delete text, it is put into register "1. The contents of register "1 are
391shifted to "2, etc. The contents of register "9 are lost. You can now get
392back the most recent deleted text with the put command: '"1P'. (also, if the
393deleted text was the result of the last delete or copy operation, 'P' or 'p'
394also works as this puts the contents of the unnamed register). You can get
395back the text of three deletes ago with '"3P'.
396
397 *redo-register*
398If you want to get back more than one part of deleted text, you can use a
399special feature of the repeat command ".". It will increase the number of the
400register used. So if you first do ""1P", the following "." will result in a
401'"2P'. Repeating this will result in all numbered registers being inserted.
402
403Example: If you deleted text with 'dd....' it can be restored with
404 '"1P....'.
405
406If you don't know in which register the deleted text is, you can use the
407:display command. An alternative is to try the first register with '"1P', and
408if it is not what you want do 'u.'. This will remove the contents of the
409first put, and repeat the put command for the second register. Repeat the
410'u.' until you got what you want.
411
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200412 vim:tw=78:ts=8:noet:ft=help:norl: