I'm trying to configure a diff tool in TortoiseHg and Mercurial.
This is the configuratión I've done:
[merge-tools]
CmpIt.executable = E:\Program Files (x86)\Compare It!\wincmp3.exe
CmpIt.priority = 1
CmpIt.premerge = True
CmpIt.gui = True
CmpIt.args= -m $local $base $other
CmpIt.diffargs= -m $local $base
CmpIt.dirdiff= True
But when the tool start, it's looking for "$local" and "$base" files instead real file names.
I found on Task Manager that the command line is geting the names of the args instead their values:
E:\Program Files (x86)\Compare It!\wincmp3.exe -m $local $base
How can I force to pass the value of the args to the command line?