blob: beb0137dbc7c66572cf94fd5b21807ecdd1ac85e [file] [log] [blame]
Bram Moolenaar86ae7202015-07-10 19:31:35 +02001*diff.txt* For Vim version 7.4. Last change: 2015 Jul 03
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7 *diff* *vimdiff* *gvimdiff* *diff-mode*
Bram Moolenaardb84e452010-08-15 13:50:43 +02008This file describes the |+diff| feature: Showing differences between two,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00009three or four versions of the same file.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010
11The basics are explained in section |08.7| of the user manual.
12
131. Starting diff mode |vimdiff|
142. Viewing diffs |view-diffs|
153. Jumping to diffs |jumpto-diffs|
164. Copying diffs |copy-diffs|
175. Diff options |diff-options|
18
19{not in Vi}
20
21==============================================================================
221. Starting diff mode
23
24The easiest way to start editing in diff mode is with the "vimdiff" command.
25This starts Vim as usual, and additionally sets up for viewing the differences
26between the arguments. >
27
28 vimdiff file1 file2 [file3 [file4]]
29
30This is equivalent to: >
31
32 vim -d file1 file2 [file3 [file4]]
33
34You may also use "gvimdiff" or "vim -d -g". The GUI is started then.
35You may also use "viewdiff" or "gviewdiff". Vim starts in readonly mode then.
36"r" may be prepended for restricted mode (see |-Z|).
37
38The second and following arguments may also be a directory name. Vim will
39then append the file name of the first argument to the directory name to find
40the file.
41
42This only works when a standard "diff" command is available. See 'diffexpr'.
43
Bram Moolenaar7e8fd632006-02-18 22:14:51 +000044Diffs are local to the current tab page |tab-page|. You can't see diffs with
45a window in another tab page. This does make it possible to have several
46diffs at the same time, each in their own tab page.
47
Bram Moolenaar071d4272004-06-13 20:20:40 +000048What happens is that Vim opens a window for each of the files. This is like
49using the |-O| argument. This uses vertical splits. If you prefer horizontal
50splits add the |-o| argument: >
51
Bram Moolenaare37d50a2008-08-06 17:06:04 +000052 vimdiff -o file1 file2 [file3 [file4]]
Bram Moolenaar071d4272004-06-13 20:20:40 +000053
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +000054If you always prefer horizontal splits include "horizontal" in 'diffopt'.
55
Bram Moolenaar071d4272004-06-13 20:20:40 +000056In each of the edited files these options are set:
57
58 'diff' on
59 'scrollbind' on
Bram Moolenaara9d52e32010-07-31 16:44:19 +020060 'cursorbind' on
Bram Moolenaar071d4272004-06-13 20:20:40 +000061 'scrollopt' includes "hor"
62 'wrap' off
63 'foldmethod' "diff"
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +000064 'foldcolumn' value from 'diffopt', default is 2
Bram Moolenaar071d4272004-06-13 20:20:40 +000065
66These options are set local to the window. When editing another file they are
67reset to the global value.
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +010068The options can still be overruled from a modeline when re-editing the file.
69However, 'foldmethod' and 'wrap' won't be set from a modeline when 'diff' is
70set.
Bram Moolenaar071d4272004-06-13 20:20:40 +000071
72The differences shown are actually the differences in the buffer. Thus if you
73make changes after loading a file, these will be included in the displayed
74diffs. You might have to do ":diffupdate" now and then, not all changes are
75immediately taken into account.
76
77In your .vimrc file you could do something special when Vim was started in
78diff mode. You could use a construct like this: >
79
80 if &diff
81 setup for diff mode
82 else
83 setup for non-diff mode
84 endif
85
86While already in Vim you can start diff mode in three ways.
87
88 *E98*
Bram Moolenaard09acef2012-09-21 14:54:30 +020089:diffs[plit] {filename} *:diffs* *:diffsplit*
Bram Moolenaar071d4272004-06-13 20:20:40 +000090 Open a new window on the file {filename}. The options are set
91 as for "vimdiff" for the current and the newly opened window.
92 Also see 'diffexpr'.
93
94 *:difft* *:diffthis*
Bram Moolenaard09acef2012-09-21 14:54:30 +020095:difft[his] Make the current window part of the diff windows. This sets
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000096 the options like for "vimdiff".
Bram Moolenaar071d4272004-06-13 20:20:40 +000097
Bram Moolenaar13600302014-05-22 18:26:40 +020098:diffp[atch] {patchfile} *E816* *:diffp* *:diffpatch*
Bram Moolenaar071d4272004-06-13 20:20:40 +000099 Use the current buffer, patch it with the diff found in
100 {patchfile} and open a buffer on the result. The options are
101 set as for "vimdiff".
102 {patchfile} can be in any format that the "patch" program
103 understands or 'patchexpr' can handle.
104 Note that {patchfile} should only contain a diff for one file,
105 the current file. If {patchfile} contains diffs for other
106 files as well, the results are unpredictable. Vim changes
107 directory to /tmp to avoid files in the current directory
108 accidentally being patched. But it may still result in
109 various ".rej" files to be created. And when absolute path
110 names are present these files may get patched anyway.
111
112To make these commands use a vertical split, prepend |:vertical|. Examples: >
113
114 :vert diffsplit main.c~
115 :vert diffpatch /tmp/diff
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000116
117If you always prefer a vertical split include "vertical" in 'diffopt'.
118
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119 *E96*
120There can be up to four buffers with 'diff' set.
121
122Since the option values are remembered with the buffer, you can edit another
123file for a moment and come back to the same file and be in diff mode again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000125 *:diffo* *:diffoff*
Bram Moolenaarbaca7f72013-09-22 14:42:24 +0200126:diffo[ff] Switch off diff mode for the current window. Resets related
127 options also when 'diff' was not set.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000128
Bram Moolenaard09acef2012-09-21 14:54:30 +0200129:diffo[ff]! Switch off diff mode for the current window and in all windows
Bram Moolenaarbaca7f72013-09-22 14:42:24 +0200130 in the current tab page where 'diff' is set. Resetting
131 related options only happens in a window that has 'diff' set,
132 if the current window does not have 'diff' set then no options
133 in it are changed.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000134
Bram Moolenaar86ae7202015-07-10 19:31:35 +0200135The `:diffoff` command resets the relevant options to the values they had when
136using `:diffsplit`, `:diffpatch` , `:diffthis`. or starting Vim in diff mode.
137When using `:diffoff` twice the last saved values are restored.
Bram Moolenaardd007ed2013-07-09 15:44:17 +0200138Otherwise they are set to their default value:
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000139
140 'diff' off
141 'scrollbind' off
Bram Moolenaara9d52e32010-07-31 16:44:19 +0200142 'cursorbind' off
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000143 'scrollopt' without "hor"
144 'wrap' on
145 'foldmethod' "manual"
146 'foldcolumn' 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000147
148==============================================================================
1492. Viewing diffs *view-diffs*
150
151The effect is that the diff windows show the same text, with the differences
152highlighted. When scrolling the text, the 'scrollbind' option will make the
153text in other windows to be scrolled as well. With vertical splits the text
154should be aligned properly.
155
156The alignment of text will go wrong when:
157- 'wrap' is on, some lines will be wrapped and occupy two or more screen
158 lines
159- folds are open in one window but not another
160- 'scrollbind' is off
161- changes have been made to the text
162- "filler" is not present in 'diffopt', deleted/inserted lines makes the
163 alignment go wrong
164
165All the buffers edited in a window where the 'diff' option is set will join in
166the diff. This is also possible for hidden buffers. They must have been
167edited in a window first for this to be possible.
168
Bram Moolenaar9964e462007-05-05 17:54:07 +0000169 *:DiffOrig* *diff-original-file*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170Since 'diff' is a window-local option, it's possible to view the same buffer
171in diff mode in one window and "normal" in another window. It is also
Bram Moolenaar9964e462007-05-05 17:54:07 +0000172possible to view the changes you have made to a buffer since the file was
173loaded. Since Vim doesn't allow having two buffers for the same file, you
174need another buffer. This command is useful: >
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +0200175 command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
176 \ | diffthis | wincmd p | diffthis
Bram Moolenaar9964e462007-05-05 17:54:07 +0000177(this is in |vimrc_example.vim|). Use ":DiffOrig" to see the differences
178between the current buffer and the file it was loaded from.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179
180A buffer that is unloaded cannot be used for the diff. But it does work for
181hidden buffers. You can use ":hide" to close a window without unloading the
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000182buffer. If you don't want a buffer to remain used for the diff do ":set
183nodiff" before hiding it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184
185 *:diffu* *:diffupdate*
Bram Moolenaarbd1d5602012-05-18 18:47:17 +0200186:diffu[pdate][!] Update the diff highlighting and folds.
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000187
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188Vim attempts to keep the differences updated when you make changes to the
189text. This mostly takes care of inserted and deleted lines. Changes within a
190line and more complicated changes do not cause the differences to be updated.
191To force the differences to be updated use: >
192
193 :diffupdate
194
Bram Moolenaarbd1d5602012-05-18 18:47:17 +0200195If the ! is included Vim will check if the file was changed externally and
196needs to be reloaded. It will prompt for each changed file, like `:checktime`
197was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198
199Vim will show filler lines for lines that are missing in one window but are
200present in another. These lines were inserted in another file or deleted in
201this file. Removing "filler" from the 'diffopt' option will make Vim not
202display these filler lines.
203
204
205Folds are used to hide the text that wasn't changed. See |folding| for all
206the commands that can be used with folds.
207
208The context of lines above a difference that are not included in the fold can
209be set with the 'diffopt' option. For example, to set the context to three
210lines: >
211
212 :set diffopt=filler,context:3
213
214
215The diffs are highlighted with these groups:
216
217|hl-DiffAdd| DiffAdd Added (inserted) lines. These lines exist in
218 this buffer but not in another.
219|hl-DiffChange| DiffChange Changed lines.
220|hl-DiffText| DiffText Changed text inside a Changed line. Vim
221 finds the first character that is different,
222 and the last character that is different
223 (searching from the end of the line). The
224 text in between is highlighted. This means
225 that parts in the middle that are still the
Bram Moolenaar9e54a0e2006-04-14 20:42:25 +0000226 same are highlighted anyway. Only "iwhite" of
227 'diffopt' is used here.
Bram Moolenaarfa13eef2013-02-06 17:34:04 +0100228|hl-DiffDelete| DiffDelete Deleted lines. Also called filler lines,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229 because they don't really exist in this
230 buffer.
231
232==============================================================================
2333. Jumping to diffs *jumpto-diffs*
234
235Two commands can be used to jump to diffs:
236 *[c*
237 [c Jump backwards to the previous start of a change.
238 When a count is used, do it that many times.
239 *]c*
240 ]c Jump forwards to the next start of a change.
241 When a count is used, do it that many times.
242
243It is an error if there is no change for the cursor to move to.
244
245==============================================================================
2464. Diff copying *copy-diffs* *E99* *E100* *E101* *E102* *E103*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000247 *merge*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248There are two commands to copy text from one buffer to another. The result is
249that the buffers will be equal within the specified range.
250
251 *:diffg* *:diffget*
252:[range]diffg[et] [bufspec]
253 Modify the current buffer to undo difference with another
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100254 buffer. If [bufspec] is given, that buffer is used. If
255 [bufspec] refers to the current buffer then nothing happens.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256 Otherwise this only works if there is one other buffer in diff
257 mode.
258 See below for [range].
259
Bram Moolenaar9964e462007-05-05 17:54:07 +0000260 *:diffpu* *:diffput* *E793*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261:[range]diffpu[t] [bufspec]
262 Modify another buffer to undo difference with the current
263 buffer. Just like ":diffget" but the other buffer is modified
264 instead of the current one.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000265 When [bufspec] is omitted and there is more than one other
266 buffer in diff mode where 'modifiable' is set this fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267 See below for [range].
268
269 *do*
Bram Moolenaar32efaf62014-11-05 17:02:17 +0100270[count]do Same as ":diffget" without range. The "o" stands for "obtain"
271 ("dg" can't be used, it could be the start of "dgg"!). Note:
272 this doesn't work in Visual mode.
273 If you give a [count], it is used as the [bufspec] argument
274 for ":diffget".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275
276 *dp*
Bram Moolenaar32efaf62014-11-05 17:02:17 +0100277[count]dp Same as ":diffput" without range. Note: this doesn't work in
278 Visual mode.
279 If you give a [count], it is used as the [bufspec] argument
280 for ":diffput".
Bram Moolenaar4a748032010-09-30 21:47:56 +0200281
Bram Moolenaar071d4272004-06-13 20:20:40 +0000282
283When no [range] is given, the diff at the cursor position or just above it is
284affected. When [range] is used, Vim tries to only put or get the specified
285lines. When there are deleted lines, this may not always be possible.
286
287There can be deleted lines below the last line of the buffer. When the cursor
288is on the last line in the buffer and there is no diff above this line, the
289":diffget" and "do" commands will obtain lines from the other buffer.
290
291To be able to get those lines from another buffer in a [range] it's allowed to
292use the last line number plus one. This command gets all diffs from the other
293buffer: >
294
295 :1,$+1diffget
296
297Note that deleted lines are displayed, but not counted as text lines. You
298can't move the cursor into them. To fill the deleted lines with the lines
299from another buffer use ":diffget" on the line below them.
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000300 *E787*
301When the buffer that is about to be modified is read-only and the autocommand
302that is triggered by |FileChangedRO| changes buffers the command will fail.
303The autocommand must not change buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000304
305The [bufspec] argument above can be a buffer number, a pattern for a buffer
306name or a part of a buffer name. Examples:
307
308 :diffget Use the other buffer which is in diff mode
309 :diffget 3 Use buffer 3
310 :diffget v2 Use the buffer which matches "v2" and is in
311 diff mode (e.g., "file.c.v2")
312
313==============================================================================
3145. Diff options *diff-options*
315
316Also see |'diffopt'| and the "diff" item of |'fillchars'|.
317
Bram Moolenaar0122c402015-02-03 19:13:34 +0100318 *diff-slow* *diff_translations*
319For very long lines, the diff syntax highlighting might be slow, especially
320since it tries to match all different kind of localisations. To disable
321localisations and speed up the syntax highlighting, set the global variable
322g:diff_translations to zero: >
323
324 let g:diff_translations = 0
325<
326After setting this variable, Reload the syntax script: >
327
328 set syntax=diff
329<
330
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331
332FINDING THE DIFFERENCES *diff-diffexpr*
333
334The 'diffexpr' option can be set to use something else than the standard
335"diff" program to compare two files and find the differences.
336
337When 'diffexpr' is empty, Vim uses this command to find the differences
338between file1 and file2: >
339
340 diff file1 file2 > outfile
341
342The ">" is replaced with the value of 'shellredir'.
343
344The output of "diff" must be a normal "ed" style diff. Do NOT use a context
345diff. This example explains the format that Vim expects: >
346
347 1a2
348 > bbb
349 4d4
350 < 111
351 7c7
352 < GGG
353 ---
354 > ggg
355
356The "1a2" item appends the line "bbb".
357The "4d4" item deletes the line "111".
Bram Moolenaar9b451252012-08-15 17:43:31 +0200358The "7c7" item replaces the line "GGG" with "ggg".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100360When 'diffexpr' is not empty, Vim evaluates it to obtain a diff file in the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361format mentioned. These variables are set to the file names used:
362
363 v:fname_in original file
364 v:fname_new new version of the same file
365 v:fname_out resulting diff file
366
367Additionally, 'diffexpr' should take care of "icase" and "iwhite" in the
368'diffopt' option. 'diffexpr' cannot change the value of 'lines' and
369'columns'.
370
371Example (this does almost the same as 'diffexpr' being empty): >
372
373 set diffexpr=MyDiff()
374 function MyDiff()
375 let opt = ""
376 if &diffopt =~ "icase"
377 let opt = opt . "-i "
378 endif
379 if &diffopt =~ "iwhite"
380 let opt = opt . "-b "
381 endif
382 silent execute "!diff -a --binary " . opt . v:fname_in . " " . v:fname_new .
383 \ " > " . v:fname_out
384 endfunction
385
386The "-a" argument is used to force comparing the files as text, comparing as
387binaries isn't useful. The "--binary" argument makes the files read in binary
388mode, so that a CTRL-Z doesn't end the text on DOS.
389
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100390 *E810* *E97*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391Vim will do a test if the diff output looks alright. If it doesn't, you will
392get an error message. Possible causes:
393- The "diff" program cannot be executed.
394- The "diff" program doesn't produce normal "ed" style diffs (see above).
395- The 'shell' and associated options are not set correctly. Try if filtering
396 works with a command like ":!sort".
397- You are using 'diffexpr' and it doesn't work.
Bram Moolenaar71fe80d2006-01-22 23:25:56 +0000398If it's not clear what the problem is set the 'verbose' option to one or more
399to see more messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100401The self-installing Vim for MS-Windows includes a diff program. If you don't
402have it you might want to download a diff.exe. For example from
Bram Moolenaar81af9252010-12-10 20:35:50 +0100403http://gnuwin32.sourceforge.net/packages/diffutils.htm.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000404
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405
406USING PATCHES *diff-patchexpr*
407
408The 'patchexpr' option can be set to use something else than the standard
409"patch" program.
410
411When 'patchexpr' is empty, Vim will call the "patch" program like this: >
412
413 patch -o outfile origfile < patchfile
414
415This should work fine with most versions of the "patch" program. Note that a
416CR in the middle of a line may cause problems, it is seen as a line break.
417
418If the default doesn't work for you, set the 'patchexpr' to an expression that
419will have the same effect. These variables are set to the file names used:
420
421 v:fname_in original file
422 v:fname_diff patch file
423 v:fname_out resulting patched file
424
425Example (this does the same as 'patchexpr' being empty): >
426
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000427 set patchexpr=MyPatch()
428 function MyPatch()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 :call system("patch -o " . v:fname_out . " " . v:fname_in .
430 \ " < " . v:fname_diff)
431 endfunction
432
433Make sure that using the "patch" program doesn't have unwanted side effects.
434For example, watch out for additionally generated files, which should be
435deleted. It should just patch the file and nothing else.
436 Vim will change directory to "/tmp" or another temp directory before
437evaluating 'patchexpr'. This hopefully avoids that files in the current
438directory are accidentally patched. Vim will also delete files starting with
439v:fname_in and ending in ".rej" and ".orig".
440
441 vim:tw=78:ts=8:ft=help:norl: