为什么 VimDiff 如此有限?
凭借 Vim 的所有高级编辑功能,我很难相信 VimDiff 没有从右/左复制的方法! difftool 还能用来做什么?有什么想法吗? VimDiff 有哪些功能?
另外,我什至没有看到移动到下一个/上一个差异的方法!
With all the advanced editing capabilities of Vim, I find it hard to believe that VimDiff doesn't have a way of copying from/to right/left!! What else can a difftool be used for? Any idea? What are the capabilities of VimDiff?
Also, I don't even see a way of moving to the next/prev difference!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
每件事都在帮助中进行了解释... (
do
,dp
,]c
,[c
)< code>:h :h 也是你的朋友。
Every thing is explained in the help ... (
do
,dp
,]c
,[c
):h :h
is also your friend.您需要使用
do
和dp
来满足您的复制需求;它们代表从当前窗口“放置”,以及从另一个窗口“获取”。 (这假设是双分割差异。)要移动到下一个/上一个差异,请使用
]c
和[c
。以下是我使用的基本命令,并尽可能使用助记符:
You need to use
do
anddp
for your copying needs; these represent 'put' from current window, and 'obtain' from the other window. (This assumes a dual-split diff.)For moving to next/prev difference, use
]c
and[c
.Here are the basic commands I use, with mnemonics where possible: