Re: [PATCH 6/7] mergetools: Fix difftool/mergetool --tool-help listing for vim
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:55:54
David Aguilar [off-list ref] writes:
On Fri, Jan 25, 2013 at 2:38 AM, John Keeping [off-list ref] wrote:quoted
On Fri, Jan 25, 2013 at 01:43:53AM -0800, David Aguilar wrote:quoted
"git difftool --tool-help" and "git mergetool --tool-help" incorreclty list "vim" as being an unavailable tool. This is because they attempt to find a tool named according to the mergetool scriptlet instead of the Git- recognized tool name.Actually, after my patches both git-difftool and git-mergetool get this right since list_merge_tool_candidates lists vimdiff and gvimdiff.quoted
vimdiff, vimdiff2, gvimdiff, and gvimdiff2 are all provided by the "vim" scriptlet. This required git-mergetool--lib to special-case it when setting up the tool. Remove the exception for "vim" and allow the scriptlets to be found naturally by using symlinks to a single "vimdiff" scriptlet.I wonder if it would be better to make these single-line scripts instead of symlinks: . "$MERGE_TOOLS_DIR"/vimdiff where we make git-mergetool--lib.sh export: MERGE_TOOLS_DIR=$(git --exec-path)/mergetoolsThat sounds like the way to go.
Yup, I'll expect a reroll of this one and possibly the next one (I haven't read yet). 1-5/7 looked all very sensible. Thanks.