本文介绍了使用vimdiff合并更改的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
就我而言,我有两个文件file1和file2。使用vimdiff,我想按如下所示合并更改:
In my case, I have two files file1 and file2. Using vimdiff, I want to merge the changes as follows:
- 首先,将file1的行放在file2的行之上。这意味着文件2中的
清单2
和清单2
之类的区别应为清单2
,然后在合并文件中列出清单2
。 - 反写大小写。
- In first difference, place line from file1 above line from file2. It means difference such as
Listing 2
in file2 andList 2
should beList 2
followed byListing 2
in the merged file. - Reverse case in another change.
快照如下所示。
我们如何使用vimdiff实现此目的?
How can we achieve this using vimdiff?
推荐答案
您可以使用 在两个窗口之间来回切换。您可以从一个窗口执行 复制,然后粘贴到另一个窗口中。解决差异时,高光将改变并消失。
You can switch back and forth between the two windows with . You can copy from one window do a , and then paste into the other. As you resolve differences, the highlights will change, and disappear.
看看这个。
这篇关于使用vimdiff合并更改的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!