12

我正在使用 git difftool 比较 VIM 中的 2 个大文件。我只想导航到不同的行。

如何使用 GIT difftool 在不同的行之间快速导航?

我正在寻找类似 winmerge 快捷键的东西:
Alt+down - Next Change
Alt+Up - Prev Change

4

1 回答 1

26

vim有一个广泛而非常好的帮助文件。你会帮自己一个忙,试着熟悉它。

:h diff

3. Jumping to diffs                 *jumpto-diffs*

Two commands can be used to jump to diffs:
                                *[c*
    [c      Jump backwards to the previous start of a change.
            When a count is used, do it that many times.
                                *]c*
    ]c      Jump forwards to the next start of a change.
            When a count is used, do it that many times.
于 2014-11-26T14:21:49.420 回答