blob: 493c740ad4a1f170588c72161855b5a9855d5aa2 [file] [log] [blame]
Yee Cheng Chind75ab0c2025-06-20 18:44:18 +02001*diff.txt* For Vim version 9.1. Last change: 2025 Jun 20
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 Moolenaar015efc32016-08-24 22:34:33 +02008This file describes the |+diff| feature: Showing differences between two to
9eight 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
Bram Moolenaar24a98a02017-09-27 22:23:55 +0200131. Starting diff mode |start-vimdiff|
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142. Viewing diffs |view-diffs|
153. Jumping to diffs |jumpto-diffs|
164. Copying diffs |copy-diffs|
175. Diff options |diff-options|
18
Bram Moolenaar071d4272004-06-13 20:20:40 +000019==============================================================================
Bram Moolenaar24a98a02017-09-27 22:23:55 +0200201. Starting diff mode *start-vimdiff*
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
22The easiest way to start editing in diff mode is with the "vimdiff" command.
23This starts Vim as usual, and additionally sets up for viewing the differences
24between the arguments. >
25
26 vimdiff file1 file2 [file3 [file4]]
27
28This is equivalent to: >
29
30 vim -d file1 file2 [file3 [file4]]
31
32You may also use "gvimdiff" or "vim -d -g". The GUI is started then.
33You may also use "viewdiff" or "gviewdiff". Vim starts in readonly mode then.
34"r" may be prepended for restricted mode (see |-Z|).
35
36The second and following arguments may also be a directory name. Vim will
37then append the file name of the first argument to the directory name to find
38the file.
39
Bram Moolenaare828b762018-09-10 17:51:58 +020040By default an internal diff library will be used. When 'diffopt' or
41'diffexpr' has been set an external "diff" command will be used. This only
42works when such a diff program is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +000043
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"
Bram Moolenaar4223d432021-02-10 13:18:17 +010062 'wrap' off, or leave as-is if 'diffopt' includes "followwrap"
Bram Moolenaar071d4272004-06-13 20:20:40 +000063 '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 Moolenaar5ef1c6a2019-11-10 22:09:11 +010071See `:diffoff` for an easy way to revert the options.
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
73The differences shown are actually the differences in the buffer. Thus if you
74make changes after loading a file, these will be included in the displayed
75diffs. You might have to do ":diffupdate" now and then, not all changes are
Bram Moolenaar5ef1c6a2019-11-10 22:09:11 +010076immediately taken into account, especially when using an external diff command.
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
78In your .vimrc file you could do something special when Vim was started in
79diff mode. You could use a construct like this: >
80
81 if &diff
82 setup for diff mode
83 else
84 setup for non-diff mode
85 endif
86
87While already in Vim you can start diff mode in three ways.
88
89 *E98*
Bram Moolenaard09acef2012-09-21 14:54:30 +020090:diffs[plit] {filename} *:diffs* *:diffsplit*
Bram Moolenaar071d4272004-06-13 20:20:40 +000091 Open a new window on the file {filename}. The options are set
92 as for "vimdiff" for the current and the newly opened window.
93 Also see 'diffexpr'.
94
95 *:difft* *:diffthis*
Bram Moolenaard09acef2012-09-21 14:54:30 +020096:difft[his] Make the current window part of the diff windows. This sets
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +000097 the options like for "vimdiff".
Bram Moolenaar071d4272004-06-13 20:20:40 +000098
Bram Moolenaar13600302014-05-22 18:26:40 +020099:diffp[atch] {patchfile} *E816* *:diffp* *:diffpatch*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000100 Use the current buffer, patch it with the diff found in
101 {patchfile} and open a buffer on the result. The options are
102 set as for "vimdiff".
103 {patchfile} can be in any format that the "patch" program
104 understands or 'patchexpr' can handle.
105 Note that {patchfile} should only contain a diff for one file,
106 the current file. If {patchfile} contains diffs for other
107 files as well, the results are unpredictable. Vim changes
108 directory to /tmp to avoid files in the current directory
109 accidentally being patched. But it may still result in
110 various ".rej" files to be created. And when absolute path
111 names are present these files may get patched anyway.
Bram Moolenaar71badf92023-04-22 22:40:14 +0100112 Using the "patch" command is not allowed in |restricted-mode|.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000113
114To make these commands use a vertical split, prepend |:vertical|. Examples: >
115
116 :vert diffsplit main.c~
117 :vert diffpatch /tmp/diff
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000118
119If you always prefer a vertical split include "vertical" in 'diffopt'.
120
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 *E96*
Bram Moolenaar015efc32016-08-24 22:34:33 +0200122There can be up to eight buffers with 'diff' set.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123
124Since the option values are remembered with the buffer, you can edit another
125file for a moment and come back to the same file and be in diff mode again.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000127 *:diffo* *:diffoff*
Bram Moolenaarbaca7f72013-09-22 14:42:24 +0200128:diffo[ff] Switch off diff mode for the current window. Resets related
129 options also when 'diff' was not set.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000130
Bram Moolenaard09acef2012-09-21 14:54:30 +0200131:diffo[ff]! Switch off diff mode for the current window and in all windows
Bram Moolenaarbaca7f72013-09-22 14:42:24 +0200132 in the current tab page where 'diff' is set. Resetting
133 related options only happens in a window that has 'diff' set,
134 if the current window does not have 'diff' set then no options
135 in it are changed.
Bram Moolenaar3df01732017-02-17 22:47:16 +0100136 Hidden buffers are also removed from the list of diff'ed
137 buffers.
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000138
Bram Moolenaar86ae7202015-07-10 19:31:35 +0200139The `:diffoff` command resets the relevant options to the values they had when
Bram Moolenaarbe4e0162023-02-02 13:59:48 +0000140using `:diffsplit`, `:diffpatch`, `:diffthis`. or starting Vim in diff mode.
Bram Moolenaar86ae7202015-07-10 19:31:35 +0200141When using `:diffoff` twice the last saved values are restored.
Bram Moolenaardd007ed2013-07-09 15:44:17 +0200142Otherwise they are set to their default value:
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000143
144 'diff' off
145 'scrollbind' off
Bram Moolenaara9d52e32010-07-31 16:44:19 +0200146 'cursorbind' off
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000147 'scrollopt' without "hor"
Bram Moolenaar4223d432021-02-10 13:18:17 +0100148 'wrap' on, or leave as-is if 'diffopt' includes "followwrap"
Bram Moolenaar2df6dcc2004-07-12 15:53:54 +0000149 'foldmethod' "manual"
150 'foldcolumn' 0
Bram Moolenaar071d4272004-06-13 20:20:40 +0000151
Bram Moolenaarf1dcd142022-12-31 15:30:45 +0000152'foldenable' will most-likely be reset to off. That is when 'foldmethod' is
153is restored to "manual". The folds themselves are not cleared but they should
154not show up, resetting 'foldenable' is the best way to do that.
155
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156==============================================================================
1572. Viewing diffs *view-diffs*
158
159The effect is that the diff windows show the same text, with the differences
160highlighted. When scrolling the text, the 'scrollbind' option will make the
161text in other windows to be scrolled as well. With vertical splits the text
162should be aligned properly.
163
164The alignment of text will go wrong when:
165- 'wrap' is on, some lines will be wrapped and occupy two or more screen
166 lines
167- folds are open in one window but not another
168- 'scrollbind' is off
169- changes have been made to the text
170- "filler" is not present in 'diffopt', deleted/inserted lines makes the
171 alignment go wrong
172
173All the buffers edited in a window where the 'diff' option is set will join in
174the diff. This is also possible for hidden buffers. They must have been
Bram Moolenaar3df01732017-02-17 22:47:16 +0100175edited in a window first for this to be possible. To get rid of the hidden
176buffers use `:diffoff!`.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000177
Bram Moolenaar9964e462007-05-05 17:54:07 +0000178 *:DiffOrig* *diff-original-file*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179Since 'diff' is a window-local option, it's possible to view the same buffer
180in diff mode in one window and "normal" in another window. It is also
Bram Moolenaar9964e462007-05-05 17:54:07 +0000181possible to view the changes you have made to a buffer since the file was
182loaded. Since Vim doesn't allow having two buffers for the same file, you
183need another buffer. This command is useful: >
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +0200184 command DiffOrig vert new | set bt=nofile | r ++edit # | 0d_
Bram Moolenaar938ae282023-02-20 20:44:55 +0000185 \ | diffthis | wincmd p | diffthis
Bram Moolenaar26967612019-03-17 17:13:16 +0100186(this is in |defaults.vim|). Use ":DiffOrig" to see the differences between
187the current buffer and the file it was loaded from.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000188
189A buffer that is unloaded cannot be used for the diff. But it does work for
190hidden buffers. You can use ":hide" to close a window without unloading the
Bram Moolenaar111ff9f2005-03-08 22:40:03 +0000191buffer. If you don't want a buffer to remain used for the diff do ":set
192nodiff" before hiding it.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000193
Bram Moolenaar61da1bf2019-06-06 12:14:49 +0200194 *:dif* *:diff* *:diffupdate*
Bram Moolenaarb4ff5182015-11-10 21:15:48 +0100195:dif[fupdate][!] Update the diff highlighting and folds.
Bram Moolenaara7fc0102005-05-18 22:17:12 +0000196
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197Vim attempts to keep the differences updated when you make changes to the
198text. This mostly takes care of inserted and deleted lines. Changes within a
199line and more complicated changes do not cause the differences to be updated.
200To force the differences to be updated use: >
201
202 :diffupdate
203
Bram Moolenaarbd1d5602012-05-18 18:47:17 +0200204If the ! is included Vim will check if the file was changed externally and
205needs to be reloaded. It will prompt for each changed file, like `:checktime`
206was used.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000207
208Vim will show filler lines for lines that are missing in one window but are
209present in another. These lines were inserted in another file or deleted in
210this file. Removing "filler" from the 'diffopt' option will make Vim not
211display these filler lines.
212
213
214Folds are used to hide the text that wasn't changed. See |folding| for all
215the commands that can be used with folds.
216
217The context of lines above a difference that are not included in the fold can
218be set with the 'diffopt' option. For example, to set the context to three
219lines: >
220
221 :set diffopt=filler,context:3
222
223
224The diffs are highlighted with these groups:
225
226|hl-DiffAdd| DiffAdd Added (inserted) lines. These lines exist in
227 this buffer but not in another.
228|hl-DiffChange| DiffChange Changed lines.
Yee Cheng Chin9943d472025-03-26 19:41:02 +0100229|hl-DiffText| DiffText Changed text inside a Changed line. Exact
230 behavior depends on the `inline:` setting in
231 'diffopt'.
232 With `inline:` set to "simple", Vim finds the
233 first character that is different, and the
234 last character that is different (searching
235 from the end of the line). The text in
236 between is highlighted. This means that parts
237 in the middle that are still the same are
238 highlighted anyway. The 'diffopt' flags
239 "iwhite" and "icase" are used here.
240 With `inline:` set to "char" or "word", Vim
241 uses the internal diff library to perform a
242 detailed diff between the changed blocks and
243 highlight the exact difference between the
244 two. Will respect any 'diffopt' flag that
245 affects internal diff.
zeertzjq5a307c32025-03-28 19:01:32 +0100246 Not used when `inline:` is set to "none".
247|hl-DiffTextAdd| DiffTextAdd Added text inside a Changed line. Similar to
Yee Cheng Chin9943d472025-03-26 19:41:02 +0100248 DiffText, but used when there is no
zeertzjq5a307c32025-03-28 19:01:32 +0100249 corresponding text in other buffers. Not used
250 when `inline:` is set to "simple" or "none".
Bram Moolenaarfa13eef2013-02-06 17:34:04 +0100251|hl-DiffDelete| DiffDelete Deleted lines. Also called filler lines,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252 because they don't really exist in this
253 buffer.
254
255==============================================================================
2563. Jumping to diffs *jumpto-diffs*
257
258Two commands can be used to jump to diffs:
259 *[c*
260 [c Jump backwards to the previous start of a change.
261 When a count is used, do it that many times.
262 *]c*
263 ]c Jump forwards to the next start of a change.
264 When a count is used, do it that many times.
265
266It is an error if there is no change for the cursor to move to.
267
268==============================================================================
2694. Diff copying *copy-diffs* *E99* *E100* *E101* *E102* *E103*
Bram Moolenaar1e015462005-09-25 22:16:38 +0000270 *merge*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271There are two commands to copy text from one buffer to another. The result is
272that the buffers will be equal within the specified range.
273
274 *:diffg* *:diffget*
275:[range]diffg[et] [bufspec]
276 Modify the current buffer to undo difference with another
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100277 buffer. If [bufspec] is given, that buffer is used. If
278 [bufspec] refers to the current buffer then nothing happens.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 Otherwise this only works if there is one other buffer in diff
280 mode.
281 See below for [range].
282
Bram Moolenaar9964e462007-05-05 17:54:07 +0000283 *:diffpu* *:diffput* *E793*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284:[range]diffpu[t] [bufspec]
285 Modify another buffer to undo difference with the current
286 buffer. Just like ":diffget" but the other buffer is modified
287 instead of the current one.
Bram Moolenaar1e015462005-09-25 22:16:38 +0000288 When [bufspec] is omitted and there is more than one other
289 buffer in diff mode where 'modifiable' is set this fails.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290 See below for [range].
291
292 *do*
Bram Moolenaar32efaf62014-11-05 17:02:17 +0100293[count]do Same as ":diffget" without range. The "o" stands for "obtain"
294 ("dg" can't be used, it could be the start of "dgg"!). Note:
295 this doesn't work in Visual mode.
296 If you give a [count], it is used as the [bufspec] argument
297 for ":diffget".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298
299 *dp*
Bram Moolenaar32efaf62014-11-05 17:02:17 +0100300[count]dp Same as ":diffput" without range. Note: this doesn't work in
301 Visual mode.
302 If you give a [count], it is used as the [bufspec] argument
303 for ":diffput".
Bram Moolenaar4a748032010-09-30 21:47:56 +0200304
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305
306When no [range] is given, the diff at the cursor position or just above it is
Yee Cheng Chind75ab0c2025-06-20 18:44:18 +0200307affected. There can be deleted lines below the last line of the buffer. When
308the cursor is on the last line in the buffer and there is no diff above this
309line, and no [range] is given, the diff below the cursor position will be used
310instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311
Yee Cheng Chind75ab0c2025-06-20 18:44:18 +0200312When [range] is used, Vim tries to only put or get the specified lines. When
313there are deleted lines, they will be used if they are between the lines
314specified by [range].
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315
Yee Cheng Chind75ab0c2025-06-20 18:44:18 +0200316To be able to put or get those lines to/from another buffer in a [range] it's
317allowed to use 0 and the last line number plus one. This command gets all
318diffs from the other buffer: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319
Yee Cheng Chind75ab0c2025-06-20 18:44:18 +0200320 :0,$+1diffget
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321
322Note that deleted lines are displayed, but not counted as text lines. You
323can't move the cursor into them. To fill the deleted lines with the lines
324from another buffer use ":diffget" on the line below them.
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000325 *E787*
326When the buffer that is about to be modified is read-only and the autocommand
327that is triggered by |FileChangedRO| changes buffers the command will fail.
328The autocommand must not change buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329
330The [bufspec] argument above can be a buffer number, a pattern for a buffer
331name or a part of a buffer name. Examples:
332
333 :diffget Use the other buffer which is in diff mode
334 :diffget 3 Use buffer 3
335 :diffget v2 Use the buffer which matches "v2" and is in
336 diff mode (e.g., "file.c.v2")
337
338==============================================================================
3395. Diff options *diff-options*
340
341Also see |'diffopt'| and the "diff" item of |'fillchars'|.
342
Bram Moolenaar0122c402015-02-03 19:13:34 +0100343 *diff-slow* *diff_translations*
344For very long lines, the diff syntax highlighting might be slow, especially
345since it tries to match all different kind of localisations. To disable
346localisations and speed up the syntax highlighting, set the global variable
347g:diff_translations to zero: >
348
349 let g:diff_translations = 0
350<
Bram Moolenaar01164a62017-11-02 22:58:42 +0100351After setting this variable, reload the syntax script: >
Bram Moolenaar0122c402015-02-03 19:13:34 +0100352
353 set syntax=diff
354<
355
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356
357FINDING THE DIFFERENCES *diff-diffexpr*
358
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000359The 'diffexpr' option can be set to use something else than the internal diff
360support or the standard "diff" program to compare two files and find the
361differences. *E959*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000362
363When 'diffexpr' is empty, Vim uses this command to find the differences
364between file1 and file2: >
365
366 diff file1 file2 > outfile
367
368The ">" is replaced with the value of 'shellredir'.
369
Bram Moolenaard2ea7cf2021-05-30 20:54:13 +0200370The output of "diff" must be a normal "ed" style diff or a unified diff. A
371context diff will NOT work. For a unified diff no context lines can be used.
372Using "diff -u" will NOT work, use "diff -U0".
373
374This example explains the format that Vim expects for the "ed" style diff: >
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375
376 1a2
377 > bbb
378 4d4
379 < 111
380 7c7
381 < GGG
382 ---
383 > ggg
384
385The "1a2" item appends the line "bbb".
386The "4d4" item deletes the line "111".
Bram Moolenaar9b451252012-08-15 17:43:31 +0200387The "7c7" item replaces the line "GGG" with "ggg".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000388
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100389When 'diffexpr' is not empty, Vim evaluates it to obtain a diff file in the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390format mentioned. These variables are set to the file names used:
391
392 v:fname_in original file
393 v:fname_new new version of the same file
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000394 v:fname_out where to write the resulting diff file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000395
396Additionally, 'diffexpr' should take care of "icase" and "iwhite" in the
397'diffopt' option. 'diffexpr' cannot change the value of 'lines' and
398'columns'.
399
Bram Moolenaara4e0b972022-10-01 19:43:52 +0100400The advantage of using a function call without arguments is that it is faster,
401see |expr-option-function|.
402
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403Example (this does almost the same as 'diffexpr' being empty): >
404
405 set diffexpr=MyDiff()
406 function MyDiff()
407 let opt = ""
408 if &diffopt =~ "icase"
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000409 let opt = opt .. "-i "
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410 endif
411 if &diffopt =~ "iwhite"
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000412 let opt = opt .. "-b "
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 endif
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000414 silent execute "!diff -a --binary " .. opt .. v:fname_in .. " " .. v:fname_new ..
415 \ " > " .. v:fname_out
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200416 redraw!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000417 endfunction
418
419The "-a" argument is used to force comparing the files as text, comparing as
420binaries isn't useful. The "--binary" argument makes the files read in binary
421mode, so that a CTRL-Z doesn't end the text on DOS.
422
Bram Moolenaard473c8c2018-08-11 18:00:22 +0200423The `redraw!` command may not be needed, depending on whether executing a
424shell command shows something on the display or not.
425
Yegappan Lakshmanan8bb65f22021-12-26 10:51:39 +0000426If the 'diffexpr' expression starts with s: or |<SID>|, then it is replaced
427with the script ID (|local-function|). Example: >
428 set diffexpr=s:MyDiffExpr()
429 set diffexpr=<SID>SomeDiffExpr()
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000430Otherwise, the expression is evaluated in the context of the script where the
431option was set, thus script-local items are available.
432
Bram Moolenaar8f3f58f2010-01-06 20:52:26 +0100433 *E810* *E97*
Bram Moolenaar071d4272004-06-13 20:20:40 +0000434Vim will do a test if the diff output looks alright. If it doesn't, you will
435get an error message. Possible causes:
436- The "diff" program cannot be executed.
437- The "diff" program doesn't produce normal "ed" style diffs (see above).
438- The 'shell' and associated options are not set correctly. Try if filtering
439 works with a command like ":!sort".
440- You are using 'diffexpr' and it doesn't work.
Bram Moolenaar71fe80d2006-01-22 23:25:56 +0000441If it's not clear what the problem is set the 'verbose' option to one or more
442to see more messages.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100444The self-installing Vim for MS-Windows includes a diff program. If you don't
445have it you might want to download a diff.exe. For example from
Bram Moolenaar81af9252010-12-10 20:35:50 +0100446http://gnuwin32.sourceforge.net/packages/diffutils.htm.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +0000447
Bram Moolenaar071d4272004-06-13 20:20:40 +0000448
449USING PATCHES *diff-patchexpr*
450
451The 'patchexpr' option can be set to use something else than the standard
452"patch" program.
453
454When 'patchexpr' is empty, Vim will call the "patch" program like this: >
455
456 patch -o outfile origfile < patchfile
457
458This should work fine with most versions of the "patch" program. Note that a
459CR in the middle of a line may cause problems, it is seen as a line break.
460
461If the default doesn't work for you, set the 'patchexpr' to an expression that
462will have the same effect. These variables are set to the file names used:
463
464 v:fname_in original file
465 v:fname_diff patch file
466 v:fname_out resulting patched file
467
Bram Moolenaara4e0b972022-10-01 19:43:52 +0100468The advantage of using a function call without arguments is that it is faster,
469see |expr-option-function|.
470
Bram Moolenaar071d4272004-06-13 20:20:40 +0000471Example (this does the same as 'patchexpr' being empty): >
472
Bram Moolenaar7d47b6e2006-03-15 22:59:18 +0000473 set patchexpr=MyPatch()
474 function MyPatch()
Bram Moolenaarc51cf032022-02-26 12:25:45 +0000475 :call system("patch -o " .. v:fname_out .. " " .. v:fname_in ..
476 \ " < " .. v:fname_diff)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000477 endfunction
478
479Make sure that using the "patch" program doesn't have unwanted side effects.
480For example, watch out for additionally generated files, which should be
481deleted. It should just patch the file and nothing else.
482 Vim will change directory to "/tmp" or another temp directory before
483evaluating 'patchexpr'. This hopefully avoids that files in the current
484directory are accidentally patched. Vim will also delete files starting with
485v:fname_in and ending in ".rej" and ".orig".
486
Yegappan Lakshmanan8bb65f22021-12-26 10:51:39 +0000487If the 'patchexpr' expression starts with s: or |<SID>|, then it is replaced
488with the script ID (|local-function|). Example: >
489 set patchexpr=s:MyPatchExpr()
490 set patchexpr=<SID>SomePatchExpr()
Bram Moolenaar6f4754b2022-01-23 12:07:04 +0000491Otherwise, the expression is evaluated in the context of the script where the
492option was set, thus script-local items are available.
493
494
Yegappan Lakshmananfa378352024-02-01 22:05:27 +0100495DIFF FUNCTION EXAMPLES *diff-func-examples*
496
497Some examples for using the |diff()| function to compute the diff indices
498between two Lists of strings are below.
499>
500 " some lines are changed
501 :echo diff(['abc', 'def', 'ghi'], ['abx', 'rrr', 'xhi'], {'output': 'indices'})
502 [{'from_idx': 0, 'from_count': 3, 'to_idx': 0, 'to_count': 3}]
503
504 " few lines added at the beginning
505 :echo diff(['ghi'], ['abc', 'def', 'ghi'], {'output': 'indices'})
506 [{'from_idx': 0, 'from_count': 0, 'to_idx': 0, 'to_count': 2}]
507
508 " few lines removed from the beginning
509 :echo diff(['abc', 'def', 'ghi'], ['ghi'], {'output': 'indices'})
510 [{'from_idx': 0, 'from_count': 2, 'to_idx': 0, 'to_count': 0}]
511
512 " few lines added in the middle
513 :echo diff(['abc', 'jkl'], ['abc', 'def', 'ghi', 'jkl'], {'output': 'indices'})
514 [{'from_idx': 1, 'from_count': 0, 'to_idx': 1, 'to_count': 2}]
515
516 " few lines removed in the middle
517 :echo diff(['abc', 'def', 'ghi', 'jkl'], ['abc', 'jkl'], {'output': 'indices'})
518 [{'from_idx': 1, 'from_count': 2, 'to_idx': 1, 'to_count': 0}]
519
520 " few lines added at the end
521 :echo diff(['abc'], ['abc', 'def', 'ghi'], {'output': 'indices'})
522 [{'from_idx': 1, 'from_count': 0, 'to_idx': 1, 'to_count': 2}]
523
524 " few lines removed from the end
525 :echo diff(['abc', 'def', 'ghi'], ['abc'], {'output': 'indices'})
526 [{'from_idx': 1, 'from_count': 2, 'to_idx': 1, 'to_count': 0}]
527
528 " disjointed changes
Yegappan Lakshmanana0010a12024-02-12 20:21:26 +0100529 :echo diff(['ab', 'def', 'ghi', 'jkl'], ['abc', 'def', 'ghi', 'jk'], {'output': 'indices', 'context': 0})
Yegappan Lakshmananfa378352024-02-01 22:05:27 +0100530 [{'from_idx': 0, 'from_count': 1, 'to_idx': 0, 'to_count': 1},
531 {'from_idx': 3, 'from_count': 1, 'to_idx': 3, 'to_count': 1}]
Yegappan Lakshmanana0010a12024-02-12 20:21:26 +0100532
533 " disjointed changes with context length 1
534 :echo diff(['ab', 'def', 'ghi', 'jkl'], ['abc', 'def', 'ghi', 'jk'], {'output': 'indices', 'context': 1})
535 [{'from_idx': 0, 'from_count': 4, 'to_idx': 0, 'to_count': 4}]
536
Yegappan Lakshmananfa378352024-02-01 22:05:27 +0100537<
538
Bram Moolenaar91f84f62018-07-29 15:07:52 +0200539 vim:tw=78:ts=8:noet:ft=help:norl: