How do I jump to the next/prev diff in GIT difftool?

佐手、 提交于 2019-12-01 02:21:43

问题


I am using git difftool to compare 2 large files in VIM. I want to navigate only to the lines that differ.

How do I navigate quickly between lines that differ using GIT difftool ?

I am looking for something like winmerge shortcut keys :
Alt+down - Next Change
Alt+Up - Prev Change


回答1:


vim Has an extensive and pretty good helpfile. You would do yourself a favour trying to familiarize yourself with it.

from :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.


来源:https://stackoverflow.com/questions/27151456/how-do-i-jump-to-the-next-prev-diff-in-git-difftool

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!