From: Dickson Wong Date: Fri, 29 Jan 2016 02:18:14 +0000 (-0800) Subject: mergetool: reorder vim/gvim buffers in three-way diffs X-Git-Tag: v2.7.2~4^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2300328cb209762a14e32525cfaa91778681f059;p=git mergetool: reorder vim/gvim buffers in three-way diffs When invoking default (g)vimdiff three-way merge, the merged file is loaded as the first buffer but moved to the bottom as the fourth window. This causes a disconnect between vim commands that operate on window positions (e.g. CTRL-W_w) and those that operate on buffer index (e.g. do/dp). This change reorders the buffers to have the same index as windows while keeping the cursor default to the merged result as the bottom window. Signed-off-by: Dickson Wong Tested-by: Michael J Gruber Acked-by: David Aguilar Signed-off-by: Junio C Hamano --- diff --git a/mergetools/vimdiff b/mergetools/vimdiff index 1ddfbfcd78..74ea6d5479 100644 --- a/mergetools/vimdiff +++ b/mergetools/vimdiff @@ -9,8 +9,8 @@ merge_cmd () { gvimdiff|vimdiff) if $base_present then - "$merge_tool_path" -f -d -c 'wincmd J' \ - "$MERGED" "$LOCAL" "$BASE" "$REMOTE" + "$merge_tool_path" -f -d -c '4wincmd w | wincmd J' \ + "$LOCAL" "$BASE" "$REMOTE" "$MERGED" else "$merge_tool_path" -f -d -c 'wincmd l' \ "$LOCAL" "$MERGED" "$REMOTE"