* Equivalent of difftool.prompt per tool?
@ 2024-07-19 3:31 Ryan Zoeller
2024-07-19 14:38 ` Junio C Hamano
0 siblings, 1 reply; 3+ messages in thread
From: Ryan Zoeller @ 2024-07-19 3:31 UTC (permalink / raw)
To: git@vger.kernel.org
Is there a way to specify difftool.prompt on a per-tool basis, without manually passing --prompt or --no-prompt to override the global difftool.prompt setting?
I generally want `difftool.prompt = false` set, but one specific tool I use has a high startup time and I'd like confirmation before launching it.
If this isn't possible today, is difftool.<tool>.prompt something others would find useful?
Thanks,
Ryan Zoeller
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Equivalent of difftool.prompt per tool?
2024-07-19 3:31 Equivalent of difftool.prompt per tool? Ryan Zoeller
@ 2024-07-19 14:38 ` Junio C Hamano
2024-07-19 14:50 ` rsbecker
0 siblings, 1 reply; 3+ messages in thread
From: Junio C Hamano @ 2024-07-19 14:38 UTC (permalink / raw)
To: Ryan Zoeller; +Cc: git@vger.kernel.org
Ryan Zoeller <rtzoeller@rtzoeller.com> writes:
> Is there a way to specify difftool.prompt on a per-tool basis,
> without manually passing --prompt or --no-prompt to override the
> global difftool.prompt setting?
>
> I generally want `difftool.prompt = false` set, but one specific
> tool I use has a high startup time and I'd like confirmation
> before launching it.
>
> If this isn't possible today, is difftool.<tool>.prompt something
> others would find useful?
I do not use difftool (nor mergetool) myself, but given how
difftool.<tool>.cmd and difftool.<tool>.path behave, it does not
sound like an unreasonable feature wish.
I'd imagine the feature itself should be trivial to add, but we'd
probably want to add test to t/t7800-difftool.sh, where there are
already existing tests for inteactions between difftool.prompt and
various command line options.
Thanks.
git-difftool--helper.sh | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git c/git-difftool--helper.sh w/git-difftool--helper.sh
index dd0c9a5b7f..872d787b09 100755
--- c/git-difftool--helper.sh
+++ w/git-difftool--helper.sh
@@ -12,7 +12,9 @@ TOOL_MODE=diff
# and is overridden with $GIT_DIFFTOOL*_PROMPT.
should_prompt () {
prompt_merge=$(git config --bool mergetool.prompt || echo true)
- prompt=$(git config --bool difftool.prompt || echo $prompt_merge)
+ prompt=$(git config --bool "difftool.$merge_tool.prompt" ||
+ git config --bool difftool.prompt ||
+ echo $prompt_merge)
if test "$prompt" = true
then
test -z "$GIT_DIFFTOOL_NO_PROMPT"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: Equivalent of difftool.prompt per tool?
2024-07-19 14:38 ` Junio C Hamano
@ 2024-07-19 14:50 ` rsbecker
0 siblings, 0 replies; 3+ messages in thread
From: rsbecker @ 2024-07-19 14:50 UTC (permalink / raw)
To: 'Junio C Hamano', 'Ryan Zoeller'; +Cc: git
On Friday, July 19, 2024 10:38 AM, Junio C Hamano wrote:
>Ryan Zoeller <rtzoeller@rtzoeller.com> writes:
>
>> Is there a way to specify difftool.prompt on a per-tool basis, without
>> manually passing --prompt or --no-prompt to override the global
>> difftool.prompt setting?
>>
>> I generally want `difftool.prompt = false` set, but one specific tool
>> I use has a high startup time and I'd like confirmation before
>> launching it.
>>
>> If this isn't possible today, is difftool.<tool>.prompt something
>> others would find useful?
>
>I do not use difftool (nor mergetool) myself, but given how
difftool.<tool>.cmd and
>difftool.<tool>.path behave, it does not sound like an unreasonable feature
wish.
>
>I'd imagine the feature itself should be trivial to add, but we'd probably
want to add
>test to t/t7800-difftool.sh, where there are already existing tests for
inteactions
>between difftool.prompt and various command line options.
>
>Thanks.
>
> git-difftool--helper.sh | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
>diff --git c/git-difftool--helper.sh w/git-difftool--helper.sh index
>dd0c9a5b7f..872d787b09 100755
>--- c/git-difftool--helper.sh
>+++ w/git-difftool--helper.sh
>@@ -12,7 +12,9 @@ TOOL_MODE=diff
> # and is overridden with $GIT_DIFFTOOL*_PROMPT.
> should_prompt () {
> prompt_merge=$(git config --bool mergetool.prompt || echo true)
>- prompt=$(git config --bool difftool.prompt || echo $prompt_merge)
>+ prompt=$(git config --bool "difftool.$merge_tool.prompt" ||
>+ git config --bool difftool.prompt ||
>+ echo $prompt_merge)
> if test "$prompt" = true
> then
> test -z "$GIT_DIFFTOOL_NO_PROMPT"
Is it possible that a textconv configuration might be able to assist here by
declaring a tool under user control for displaying content of files? This
might give finer grain control prior to launching the diff so that the user
can set up their desired shell environment with the above to select the
prompting software?
Just a thought.
--Randall
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-07-19 14:50 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-19 3:31 Equivalent of difftool.prompt per tool? Ryan Zoeller
2024-07-19 14:38 ` Junio C Hamano
2024-07-19 14:50 ` rsbecker
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).