mergetool-lib: add a three-way diff view for vim/gvim
authorDan McGee <dpmcgee@gmail.com>
Wed, 15 Sep 2010 02:21:43 +0000 (21:21 -0500)
committerJunio C Hamano <gitster@pobox.com>
Wed, 15 Sep 2010 17:14:16 +0000 (10:14 -0700)
When the base version is available, use a three-way, four panel view by
default. This shows the (local, base, remote) revisions up top and the
merged result by itself in the lower pane. All revisions will still scroll
together by default, and the cursor still defaults to the merged result edit
pane.

Signed-off-by: Dan McGee <dpmcgee@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-mergetool--lib.sh

index f9a51ba50448c8e275c14e0e33afa31239c890a9..b84ac582f957a4e77af32f6f6285fd5106219804 100644 (file)
@@ -172,8 +172,13 @@ run_merge_tool () {
        vimdiff|gvimdiff)
                if merge_mode; then
                        touch "$BACKUP"
-                       "$merge_tool_path" -f -d -c "wincmd l" \
-                               "$LOCAL" "$MERGED" "$REMOTE"
+                       if $base_present; then
+                               "$merge_tool_path" -f -d -c "wincmd J" \
+                                       "$MERGED" "$LOCAL" "$BASE" "$REMOTE"
+                       else
+                               "$merge_tool_path" -f -d -c "wincmd l" \
+                                       "$LOCAL" "$MERGED" "$REMOTE"
+                       fi
                        check_unchanged
                else
                        "$merge_tool_path" -f -d -c "wincmd l" \