diff options
author | Petr Uzel <petr.uzel@centrum.cz> | 2008-08-28 00:00:00 +0000 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2015-02-06 13:15:52 +0100 |
commit | ab18682faed46e837e1bf2919d6b0d6b977e1b32 (patch) | |
tree | 614b69e1c65f1ee190a52cbc4198b96cca767c7d /README | |
download | vim-diff_navigator-ab18682faed46e837e1bf2919d6b0d6b977e1b32.tar.gz |
Version 0.1: Initial upload
Diffstat (limited to 'README')
-rw-r--r-- | README | 19 |
1 files changed, 19 insertions, 0 deletions
@@ -0,0 +1,19 @@ +This is a mirror of http://www.vim.org/scripts/script.php?script_id=2361 + +Simple script that helps navigation in unified diffs (patches). + +Together with external utility filterdiff (part of patchutils) it provides DiffAnnotate command that tags all hunks with their number and name of the changed file. + +DiffShowHunk command displays annotation of the current hunk (useful when inside a big hunk). + +DiffNextFile and DiffPrevFile command can be used to quickly skip to next/previous changed file. + +DiffNextHunk and DiffPrevHunk quickly skips to next/previous hunk. + +Since the default (,),{ and } mappings are not much useful in diffs, the plugin remaps these in the following way: +} => DiffNextFile +{ => DiffPrevFile +) => DiffNextHunk +( => DiffPrevHunk + + |