home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / unix / vim-6.2.tar.bz2 / vim-6.2.tar / vim62 / runtime / doc / diff.txt < prev    next >
Encoding:
Text File  |  2003-06-01  |  12.5 KB  |  363 lines

  1. *diff.txt*      For Vim version 6.2.  Last change: 2002 Nov 10
  2.  
  3.  
  4.           VIM REFERENCE MANUAL    by Bram Moolenaar
  5.  
  6.  
  7.                 *diff* *vimdiff* *gvimdiff* *diff-mode*
  8. This file describes the +diff feature: Showing differences between two or
  9. three versions of the same file.
  10.  
  11. The basics are explained in section |08.7| of the user manual.
  12.  
  13. 1. Starting diff mode        |vimdiff|
  14. 2. Viewing diffs        |view-diffs|
  15. 3. Jumping to diffs        |jumpto-diffs|
  16. 4. Copying diffs        |copy-diffs|
  17. 5. Diff options            |diff-options|
  18.  
  19. {not in Vi}
  20.  
  21. ==============================================================================
  22. 1. Starting diff mode
  23.  
  24. The easiest way to start editing in diff mode is with the "vimdiff" command.
  25. This starts Vim as usual, and additionally sets up for viewing the differences
  26. between the arguments. >
  27.  
  28.     vimdiff file1 file2 [file3 [file4]]
  29.  
  30. This is equivalent to: >
  31.  
  32.     vim -d file1 file2 [file3 [file4]]
  33.  
  34. You may also use "gvimdiff" or "vim -g".  The GUI is started then.
  35. You may also use "viewdiff" or "gviewdiff".  Vim starts in readonly mode then.
  36. "r" may be prepended for restricted mode (see |-Z|).
  37.  
  38. The second and following arguments may also be a directory name.  Vim will
  39. then append the file name of the first argument to the directory name to find
  40. the file.
  41.  
  42. This only works when a standard "diff" command is available.  See 'diffexpr'.
  43.  
  44. What happens is that Vim opens a window for each of the files.  This is like
  45. using the |-O| argument.  This uses vertical splits.  If you prefer horizontal
  46. splits add the |-o| argument: >
  47.  
  48.     vimdiff -o file1 file2 [file3]
  49.  
  50. In 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.  
  59. These options are set local to the window.  Thus when splitting the window or
  60. editing another file they are reset to the global value.
  61.  
  62. The differences shown are actually the differences in the buffer.  Thus if you
  63. make changes after loading a file, these will be included in the displayed
  64. diffs.  You might have to do ":diffupdate" now and then, not all changes are
  65. immediately taken into account.
  66.  
  67. In your .vimrc file you could do something special when Vim was started in
  68. diff 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.  
  76. While 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
  86.         the option like for "vimdiff".
  87.  
  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.  
  102. To make these commands use a vertical split, prepend |:vertical|.  Examples: >
  103.  
  104.     :vert diffsplit main.c~
  105.     :vert diffpatch /tmp/diff
  106. <
  107.                             *E96*
  108. There can be up to four buffers with 'diff' set.
  109.  
  110. Since the option values are remembered with the buffer, you can edit another
  111. file for a moment and come back to the same file and be in diff mode again.
  112. If you don't want diff mode, reset the 'diff' option.  And you probably want
  113. to get rid of the fold column: >
  114.  
  115.     :set nodiff
  116.     :set foldcolumn=0
  117.  
  118. ==============================================================================
  119. 2. Viewing diffs                        *view-diffs*
  120.  
  121. The effect is that the diff windows show the same text, with the differences
  122. highlighted.  When scrolling the text, the 'scrollbind' option will make the
  123. text in other windows to be scrolled as well.  With vertical splits the text
  124. should be aligned properly.
  125.  
  126. The alignment of text will go wrong when:
  127. - 'wrap' is on, some lines will be wrapped and occupy two or more screen
  128.   lines
  129. - folds are open in one window but not another
  130. - 'scrollbind' is off
  131. - changes have been made to the text
  132. - "filler" is not present in 'diffopt', deleted/inserted lines makes the
  133.   alignment go wrong
  134.  
  135. All the buffers edited in a window where the 'diff' option is set will join in
  136. the diff.  This is also possible for hidden buffers.  They must have been
  137. edited in a window first for this to be possible.
  138.  
  139. Since 'diff' is a window-local option, it's possible to view the same buffer
  140. in diff mode in one window and "normal" in another window.  It is also
  141. possible to view the changes you have made to a buffer, but since Vim doesn't
  142. allow having two buffers for the same file, you need to make a copy the
  143. original file and diff with that.  For example: >
  144.     :!cp % tempfile
  145.     :diffsplit tempfile
  146.  
  147. A buffer that is unloaded cannot be used for the diff.  But it does work for
  148. hidden buffers.  You can use ":hide" to close a window without unloading the
  149. buffer.
  150.  
  151.  
  152.                             *:diffu* *:diffupdate*
  153. Vim attempts to keep the differences updated when you make changes to the
  154. text.  This mostly takes care of inserted and deleted lines.  Changes within a
  155. line and more complicated changes do not cause the differences to be updated.
  156. To force the differences to be updated use: >
  157.  
  158.     :diffupdate
  159.  
  160.  
  161. Vim will show filler lines for lines that are missing in one window but are
  162. present in another.  These lines were inserted in another file or deleted in
  163. this file.  Removing "filler" from the 'diffopt' option will make Vim not
  164. display these filler lines.
  165.  
  166.  
  167. Folds are used to hide the text that wasn't changed.  See |folding| for all
  168. the commands that can be used with folds.
  169.  
  170. The context of lines above a difference that are not included in the fold can
  171. be set with the 'diffopt' option.  For example, to set the context to three
  172. lines: >
  173.  
  174.     :set diffopt=filler,context:3
  175.  
  176.  
  177. The diffs are highlighted with these groups:
  178.  
  179. |hl-DiffAdd|    DiffAdd        Added (inserted) lines.  These lines exist in
  180.                 this buffer but not in another.
  181. |hl-DiffChange|    DiffChange    Changed lines.
  182. |hl-DiffText|    DiffText    Changed text inside a Changed line.  Vim
  183.                 finds the first character that is different,
  184.                 and the last character that is different
  185.                 (searching from the end of the line).  The
  186.                 text in between is highlighted.  This means
  187.                 that parts in the middle that are still the
  188.                 same are highlighted anyway.
  189. |hl-DiffDelete| DiffDelete    Deleted lines.  Also called filler lines,
  190.                 because they don't really exist in this
  191.                 buffer.
  192.  
  193. ==============================================================================
  194. 3. Jumping to diffs                    *jumpto-diffs*
  195.  
  196. Two commands can be used to jump to diffs:
  197.                                 *[c*
  198.     [c        Jump backwards to the previous start of a change.
  199.             When a count is used, do it that many times.
  200.                                 *]c*
  201.     ]c        Jump forwards to the next start of a change.
  202.             When a count is used, do it that many times.
  203.  
  204. It is an error if there is no change for the cursor to move to.
  205.  
  206. ==============================================================================
  207. 4. Diff copying            *copy-diffs* *E99* *E100* *E101* *E102* *E103*
  208.  
  209. There are two commands to copy text from one buffer to another.  The result is
  210. that the buffers will be equal within the specified range.
  211.  
  212.                             *:diffg* *:diffget*
  213. :[range]diffg[et] [bufspec]
  214.         Modify the current buffer to undo difference with another
  215.         buffer.  If [bufspec] is given, that buffer is used.
  216.         Otherwise this only works if there is one other buffer in diff
  217.         mode.
  218.         See below for [range].
  219.  
  220.                             *:diffpu* *:diffput*
  221. :[range]diffpu[t] [bufspec]
  222.         Modify another buffer to undo difference with the current
  223.         buffer.  Just like ":diffget" but the other buffer is modified
  224.         instead of the current one.
  225.         See below for [range].
  226.  
  227.                             *do*
  228. do        Same as ":diffget" without argument or range.  The "o" stands
  229.         for "obtain" ("dg" can't be used for this!).
  230.  
  231.                             *dp*
  232. dp        Same as ":diffput" without argument or range.
  233.  
  234. When no [range] is given, the diff at the cursor position or just above it is
  235. affected.  When [range] is used, Vim tries to only put or get the specified
  236. lines.  When there are deleted lines, this may not always be possible.
  237.  
  238. The [bufspec] argument above can be a buffer number, a pattern for a buffer
  239. name or a part of a buffer name.  Examples:
  240.  
  241.     :diffget        Use the other buffer which is in diff mode
  242.     :diffget 3        Use buffer 3
  243.     :diffget v2        Use the buffer which matches "v2" and is in
  244.                 diff mode (e.g., "file.c.v2")
  245.  
  246. Note that deleted lines are displayed, but not counted as text lines.  You
  247. can't move the cursor into them.  To fill the deleted lines with the lines
  248. from another buffer use ":diffget" on the line below them.
  249.  
  250. There can be deleted lines below the last line of the buffer.  To be able to
  251. get those lines from another buffer it's allowed to use the last line number
  252. plus one.  This command gets all diffs from the other buffer: >
  253.  
  254.     :1,$+1diffget
  255.  
  256. ==============================================================================
  257. 5. Diff options                        *diff-options*
  258.  
  259. Also see |'diffopt'| and the "diff" item of |'fillchars'|.
  260.  
  261.  
  262. FINDING THE DIFFERENCES                    *diff-diffexpr*
  263.  
  264. The 'diffexpr' option can be set to use something else than the standard
  265. "diff" program to compare two files and find the differences.
  266.  
  267. When 'diffexpr' is empty, Vim uses this command to find the differences
  268. between file1 and file2: >
  269.  
  270.     diff file1 file2 > outfile
  271.  
  272. The ">" is replaced with the value of 'shellredir'.
  273.  
  274. The output of "diff" must be a normal "ed" style diff.  Do NOT use a context
  275. diff.  This example explains the format that Vim expects: >
  276.  
  277.     1a2
  278.     > bbb
  279.     4d4
  280.     < 111
  281.     7c7
  282.     < GGG
  283.     ---
  284.     > ggg
  285.  
  286. The "1a2" item appends the line "bbb".
  287. The "4d4" item deletes the line "111".
  288. The '7c7" item replaces the line "GGG" with "ggg".
  289.  
  290. When 'diffexpr' is not empty, Vim evaluates to obtain a diff file in the
  291. format mentioned.  These variables are set to the file names used:
  292.  
  293.     v:fname_in        original file
  294.     v:fname_new        new version of the same file
  295.     v:fname_out        resulting diff file
  296.  
  297. Additionally, 'diffexpr' should take care of "icase" and "iwhite" in the
  298. 'diffopt' option.  'diffexpr' cannot change the value of 'lines' and
  299. 'columns'.
  300.  
  301. Example (this does the same as 'diffexpr' being empty, but adds the "-a"
  302. flag to force comparing them as text): >
  303.  
  304.     set diffexpr=MyDiff()
  305.     function MyDiff()
  306.        let opt = ""
  307.        if &diffopt =~ "icase"
  308.          let opt = opt . "-i "
  309.        endif
  310.        if &diffopt =~ "iwhite"
  311.          let opt = opt . "-b "
  312.        endif
  313.        silent execute "!diff -a " . opt . v:fname_in . " " . v:fname_new .
  314.         \  " > " . v:fname_out
  315.     endfunction
  316. <
  317.                         *E97*
  318. Vim will do a test if the diff output looks alright.  If it doesn't, you will
  319. get an error message.  Possible causes:
  320. -  The "diff" program cannot be executed.
  321. -  The "diff" program doesn't produce normal "ed" style diffs (see above).
  322. -  The 'shell' and associated options are not set correctly.  Try if filtering
  323.    works with a command like ":!sort".
  324. -  You are using 'diffexpr' and it doesn't work.
  325.  
  326.  
  327. USING PATCHES                    *diff-patchexpr*
  328.  
  329. The 'patchexpr' option can be set to use something else than the standard
  330. "patch" program.
  331.  
  332. When 'patchexpr' is empty, Vim will call the "patch" program like this: >
  333.  
  334.     patch -o outfile origfile < patchfile
  335.  
  336. This should work fine with most versions of the "patch" program.  Note that a
  337. CR in the middle of a line may cause problems, it is seen as a line break.
  338.  
  339. If the default doesn't work for you, set the 'patchexpr' to an expression that
  340. will have the same effect.  These variables are set to the file names used:
  341.  
  342.     v:fname_in        original file
  343.     v:fname_diff        patch file
  344.     v:fname_out        resulting patched file
  345.  
  346. Example (this does the same as 'patchexpr' being empty): >
  347.  
  348.     let patchexpr=MyPatch
  349.     function MyPatch
  350.        :call system("patch -o " . v:fname_out . " " . v:fname_in .
  351.        \  " < " . v:fname_diff)
  352.     endfunction
  353.  
  354. Make sure that using the "patch" program doesn't have unwanted side effects.
  355. For example, watch out for additionally generated files, which should be
  356. deleted.  It should just patch the file and nothing else.
  357.    Vim will change directory to "/tmp" or another temp directory before
  358. evaluating 'patchexpr'.  This hopefully avoids that files in the current
  359. directory are accidentally patched.  Vim will also delete files starting with
  360. v:fname_in and ending in ".rej" and ".orig".
  361.  
  362.  vim:tw=78:ts=8:ft=help:norl:
  363.