You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently gitlens tries to use diff.tool for directory diffs and complains if it is not available.
Setting diff.tool to a GUI tool makes the git CLI awkward to use. However git allows explicitly using a GUI tool by invoking git diff --gui which looks for a git config called diff.guitool.
GitLens should try to use diff.guitool if it has been set and fall back to diff.tool otherwise. This means that if GitLens invokes git diff it should also pass the --gui flag as appropriate. GitLens should still warn about the git config if neither diff.guitool nor diff.tool have been set.
The text was updated successfully, but these errors were encountered:
(Continued from #57)
Currently gitlens tries to use
diff.tool
for directory diffs and complains if it is not available.Setting
diff.tool
to a GUI tool makes the git CLI awkward to use. However git allows explicitly using a GUI tool by invokinggit diff --gui
which looks for a git config calleddiff.guitool
.GitLens should try to use
diff.guitool
if it has been set and fall back todiff.tool
otherwise. This means that if GitLens invokesgit diff
it should also pass the--gui
flag as appropriate. GitLens should still warn about the git config if neitherdiff.guitool
nordiff.tool
have been set.The text was updated successfully, but these errors were encountered: