Vim diff常用的快速鍵
Keyboard Shortcuts:
do - Get changes from other window into the current window.
dp - Put the changes from current window into the other window.
]c - Jump to the next change. 跳到下一個改變的地方
[c - Jump to the previous change. 跳到上一個改變的地方
Ctrl W + Ctrl W - Switch to the other split window. 切換到另一個視窗
Ctrl W + > or Ctrl W + < 調整視窗大小
如果你只有兩個檔案的話,你要copy跟目前的檔案不同的地方就用:
:diffget
或是
:diffput
如果你超過兩個檔案的話,你可以用加視窗的編號
:diffget b#
這邊的 b# 指的是視窗的編號。在垂直視窗最左邊的編號是1
ex. 如果我目前在視窗1,但是我要將視窗2的不同的部份copy過來視窗1
就用:diffget 2,這樣就可以了,但前提必須先用 ]c or [c。
留言