blob: 7d6383126a4a0cb1526feee531ca7d244b9ca331 [file] [log] [blame]
Bram Moolenaara7fc0102005-05-18 22:17:12 +00001*diff.txt* For Vim version 7.0aa. Last change: 2005 Apr 26
Bram Moolenaar071d4272004-06-13 20:20:40 +00002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7 *diff* *vimdiff* *gvimdiff* *diff-mode*
8This file describes the +diff feature: Showing differences between two or
9three versions of the same file.
10
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
44What happens is that Vim opens a window for each of the files. This is like
45using the |-O| argument. This uses vertical splits. If you prefer horizontal
46splits add the |-o| argument: >
47
48 vimdiff -o file1 file2 [file3]
49
50In each of the edited files these options are set:
51
52 'diff' on
53 'scrollbind' on
54 'scrollopt' includes "hor"
55 'wrap' off
56 'foldmethod' "diff"
57 'foldcolumn' 2
58
59These options are set local to the window. When editing another file they are
60reset to the global value.
61
62The differences shown are actually the differences in the buffer. Thus if you
63make changes after loading a file, these will be included in the displayed
64diffs. You might have to do ":diffupdate" now and then, not all changes are
65immediately taken into account.
66
67In your .vimrc file you could do something special when Vim was started in
68diff mode. You could use a construct like this: >
69
70 if &diff
71 setup for diff mode
72 else
73 setup for non-diff mode
74 endif
75
76While already in Vim you can start diff mode in three ways.
77
78 *E98*
79:diffsplit {filename} *:diffs* *:diffsplit*
80 Open a new window on the file {filename}. The options are set
81 as for "vimdiff" for the current and the newly opened window.
82 Also see 'diffexpr'.
83
84 *:difft* *:diffthis*
85:diffthis Make the current window part of the diff windows. This sets
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000086 the options like for "vimdiff".
Bram Moolenaar071d4272004-06-13 20:20:40 +000087
88:diffpatch {patchfile} *:diffp* *:diffpatch*
89 Use the current buffer, patch it with the diff found in
90 {patchfile} and open a buffer on the result. The options are
91 set as for "vimdiff".
92 {patchfile} can be in any format that the "patch" program
93 understands or 'patchexpr' can handle.
94 Note that {patchfile} should only contain a diff for one file,
95 the current file. If {patchfile} contains diffs for other
96 files as well, the results are unpredictable. Vim changes
97 directory to /tmp to avoid files in the current directory
98 accidentally being patched. But it may still result in
99 various ".rej" files to be created. And when absolute path
100 names are present these files may get patched anyway.
101
102To make these commands use a vertical split, prepend |:vertical|. Examples: >
103
104 :vert diffsplit main.c~
105 :vert diffpatch /tmp/diff
106<
107 *E96*
108There can be up to four buffers with 'diff' set.
109
110Since the option values are remembered with the buffer, you can edit another
111file for a moment and come back to the same file and be in diff mode again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000112
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000113 *:diffo* *:diffoff*
114:diffoff Switch off diff mode for the current window.
115
116:diffoff! Switch off diff mode for all windows.
117
118The ":diffoff" command resets the relevant options to their default value.
119This may be different from what the values were before diff mode was started,
120the old values are not remembered.
121
122 'diff' off
123 'scrollbind' off
124 'scrollopt' without "hor"
125 'wrap' on
126 'foldmethod' "manual"
127 'foldcolumn' 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000128
129==============================================================================
1302. Viewing diffs *view-diffs*
131
132The effect is that the diff windows show the same text, with the differences
133highlighted. When scrolling the text, the 'scrollbind' option will make the
134text in other windows to be scrolled as well. With vertical splits the text
135should be aligned properly.
136
137The alignment of text will go wrong when:
138- 'wrap' is on, some lines will be wrapped and occupy two or more screen
139 lines
140- folds are open in one window but not another
141- 'scrollbind' is off
142- changes have been made to the text
143- "filler" is not present in 'diffopt', deleted/inserted lines makes the
144 alignment go wrong
145
146All the buffers edited in a window where the 'diff' option is set will join in
147the diff. This is also possible for hidden buffers. They must have been
148edited in a window first for this to be possible.
149
150Since 'diff' is a window-local option, it's possible to view the same buffer
151in diff mode in one window and "normal" in another window. It is also
152possible to view the changes you have made to a buffer, but since Vim doesn't
153allow having two buffers for the same file, you need to make a copy of the
154original file and diff with that. For example: >
155 :!cp % tempfile
156 :diffsplit tempfile
157
158A buffer that is unloaded cannot be used for the diff. But it does work for
159hidden buffers. You can use ":hide" to close a window without unloading the
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000160buffer. If you don't want a buffer to remain used for the diff do ":set
161nodiff" before hiding it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162
163 *:diffu* *:diffupdate*
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000164:diffu[pdate] Update the diff highlighting and folds.
165
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166Vim attempts to keep the differences updated when you make changes to the
167text. This mostly takes care of inserted and deleted lines. Changes within a
168line and more complicated changes do not cause the differences to be updated.
169To force the differences to be updated use: >
170
171 :diffupdate
172
173
174Vim will show filler lines for lines that are missing in one window but are
175present in another. These lines were inserted in another file or deleted in
176this file. Removing "filler" from the 'diffopt' option will make Vim not
177display these filler lines.
178
179
180Folds are used to hide the text that wasn't changed. See |folding| for all
181the commands that can be used with folds.
182
183The context of lines above a difference that are not included in the fold can
184be set with the 'diffopt' option. For example, to set the context to three
185lines: >
186
187 :set diffopt=filler,context:3
188
189
190The diffs are highlighted with these groups:
191
192|hl-DiffAdd| DiffAdd Added (inserted) lines. These lines exist in
193 this buffer but not in another.
194|hl-DiffChange| DiffChange Changed lines.
195|hl-DiffText| DiffText Changed text inside a Changed line. Vim
196 finds the first character that is different,
197 and the last character that is different
198 (searching from the end of the line). The
199 text in between is highlighted. This means
200 that parts in the middle that are still the
201 same are highlighted anyway.
202|hl-DiffDelete| DiffDelete Deleted lines. Also called filler lines,
203 because they don't really exist in this
204 buffer.
205
206==============================================================================
2073. Jumping to diffs *jumpto-diffs*
208
209Two commands can be used to jump to diffs:
210 *[c*
211 [c Jump backwards to the previous start of a change.
212 When a count is used, do it that many times.
213 *]c*
214 ]c Jump forwards to the next start of a change.
215 When a count is used, do it that many times.
216
217It is an error if there is no change for the cursor to move to.
218
219==============================================================================
2204. Diff copying *copy-diffs* *E99* *E100* *E101* *E102* *E103*
221
222There are two commands to copy text from one buffer to another. The result is
223that the buffers will be equal within the specified range.
224
225 *:diffg* *:diffget*
226:[range]diffg[et] [bufspec]
227 Modify the current buffer to undo difference with another
228 buffer. If [bufspec] is given, that buffer is used.
229 Otherwise this only works if there is one other buffer in diff
230 mode.
231 See below for [range].
232
233 *:diffpu* *:diffput*
234:[range]diffpu[t] [bufspec]
235 Modify another buffer to undo difference with the current
236 buffer. Just like ":diffget" but the other buffer is modified
237 instead of the current one.
238 See below for [range].
239
240 *do*
241do Same as ":diffget" without argument or range. The "o" stands
242 for "obtain" ("dg" can't be used, it could be the start of
243 "dgg"!).
244
245 *dp*
246dp Same as ":diffput" without argument or range.
247
248When no [range] is given, the diff at the cursor position or just above it is
249affected. When [range] is used, Vim tries to only put or get the specified
250lines. When there are deleted lines, this may not always be possible.
251
252There can be deleted lines below the last line of the buffer. When the cursor
253is on the last line in the buffer and there is no diff above this line, the
254":diffget" and "do" commands will obtain lines from the other buffer.
255
256To be able to get those lines from another buffer in a [range] it's allowed to
257use the last line number plus one. This command gets all diffs from the other
258buffer: >
259
260 :1,$+1diffget
261
262Note that deleted lines are displayed, but not counted as text lines. You
263can't move the cursor into them. To fill the deleted lines with the lines
264from another buffer use ":diffget" on the line below them.
265
266The [bufspec] argument above can be a buffer number, a pattern for a buffer
267name or a part of a buffer name. Examples:
268
269 :diffget Use the other buffer which is in diff mode
270 :diffget 3 Use buffer 3
271 :diffget v2 Use the buffer which matches "v2" and is in
272 diff mode (e.g., "file.c.v2")
273
274==============================================================================
2755. Diff options *diff-options*
276
277Also see |'diffopt'| and the "diff" item of |'fillchars'|.
278
279
280FINDING THE DIFFERENCES *diff-diffexpr*
281
282The 'diffexpr' option can be set to use something else than the standard
283"diff" program to compare two files and find the differences.
284
285When 'diffexpr' is empty, Vim uses this command to find the differences
286between file1 and file2: >
287
288 diff file1 file2 > outfile
289
290The ">" is replaced with the value of 'shellredir'.
291
292The output of "diff" must be a normal "ed" style diff. Do NOT use a context
293diff. This example explains the format that Vim expects: >
294
295 1a2
296 > bbb
297 4d4
298 < 111
299 7c7
300 < GGG
301 ---
302 > ggg
303
304The "1a2" item appends the line "bbb".
305The "4d4" item deletes the line "111".
306The '7c7" item replaces the line "GGG" with "ggg".
307
308When 'diffexpr' is not empty, Vim evaluates to obtain a diff file in the
309format mentioned. These variables are set to the file names used:
310
311 v:fname_in original file
312 v:fname_new new version of the same file
313 v:fname_out resulting diff file
314
315Additionally, 'diffexpr' should take care of "icase" and "iwhite" in the
316'diffopt' option. 'diffexpr' cannot change the value of 'lines' and
317'columns'.
318
319Example (this does almost the same as 'diffexpr' being empty): >
320
321 set diffexpr=MyDiff()
322 function MyDiff()
323 let opt = ""
324 if &diffopt =~ "icase"
325 let opt = opt . "-i "
326 endif
327 if &diffopt =~ "iwhite"
328 let opt = opt . "-b "
329 endif
330 silent execute "!diff -a --binary " . opt . v:fname_in . " " . v:fname_new .
331 \ " > " . v:fname_out
332 endfunction
333
334The "-a" argument is used to force comparing the files as text, comparing as
335binaries isn't useful. The "--binary" argument makes the files read in binary
336mode, so that a CTRL-Z doesn't end the text on DOS.
337
338 *E97*
339Vim will do a test if the diff output looks alright. If it doesn't, you will
340get an error message. Possible causes:
341- The "diff" program cannot be executed.
342- The "diff" program doesn't produce normal "ed" style diffs (see above).
343- The 'shell' and associated options are not set correctly. Try if filtering
344 works with a command like ":!sort".
345- You are using 'diffexpr' and it doesn't work.
346If it's not clear what the problem is set the 'verbose' option to see more
347messages.
348
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000349The self-installing Vim includes a diff program. If you don't have it you
350might want to download a diff.exe. For example from
351http://jlb.twu.net/code/unixkit.php.
352
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353
354USING PATCHES *diff-patchexpr*
355
356The 'patchexpr' option can be set to use something else than the standard
357"patch" program.
358
359When 'patchexpr' is empty, Vim will call the "patch" program like this: >
360
361 patch -o outfile origfile < patchfile
362
363This should work fine with most versions of the "patch" program. Note that a
364CR in the middle of a line may cause problems, it is seen as a line break.
365
366If the default doesn't work for you, set the 'patchexpr' to an expression that
367will have the same effect. These variables are set to the file names used:
368
369 v:fname_in original file
370 v:fname_diff patch file
371 v:fname_out resulting patched file
372
373Example (this does the same as 'patchexpr' being empty): >
374
375 let patchexpr=MyPatch
376 function MyPatch
377 :call system("patch -o " . v:fname_out . " " . v:fname_in .
378 \ " < " . v:fname_diff)
379 endfunction
380
381Make sure that using the "patch" program doesn't have unwanted side effects.
382For example, watch out for additionally generated files, which should be
383deleted. It should just patch the file and nothing else.
384 Vim will change directory to "/tmp" or another temp directory before
385evaluating 'patchexpr'. This hopefully avoids that files in the current
386directory are accidentally patched. Vim will also delete files starting with
387v:fname_in and ending in ".rej" and ".orig".
388
389 vim:tw=78:ts=8:ft=help:norl: