I installed meld
in my Mac and i want to use this as a visual diff tool in TortoiseHg. (Note that I am using a Mac. )
I have the following configuration in my .hgrc
file. But when I double clicked on a file, I got this "No visual diff tools were detected". Am I missing something in the file ?
This is getting a little bit frustrating because I have spent hours on this and still wasn't able to get a solution. Need some help here please .
[ui]
merge = /opt/local/bin/meld
[tortoisehg]
vdiff = /opt/local/bin/meld
I had the same problem with
kdiff3
on osx, but I'm sure this solution works formeld
as well. What worked was to enable theextdiff
extension in mercurial, then definekdiff3
as anextdiff
command and use that in the[tortoisehg]
section.This is my
.hgrc
file with these changes made: