tldr/pages/common/vimdiff.md

38 lines
678 B
Markdown
Raw Normal View History

2017-05-14 21:27:16 +01:00
# vimdiff
> Open up two or more files in vim and show the differences between them.
> See also: `vim`, `vimtutor`, `nvim`.
> More information: <https://www.vim.org>.
2017-05-14 21:27:16 +01:00
- Open two files and show the differences:
2017-05-14 21:27:16 +01:00
`vimdiff {{path/to/file1}} {{path/to/file2}}`
2017-05-14 21:27:16 +01:00
- Move the cursor to the window on the left|right:
2017-05-14 21:27:16 +01:00
`<Ctrl> + w {{h|l}}`
2017-05-14 21:27:16 +01:00
- Jump to the previous difference:
2017-05-14 21:27:16 +01:00
`[c`
- Jump to the next difference:
`]c`
- Copy the highlighted difference from the other window to the current window:
`do`
- Copy the highlighted difference from the current window to the other window:
`dp`
- Update all highlights and folds:
`:diffupdate`
- Toggle the highlighted code fold:
`za`