-
Notifications
You must be signed in to change notification settings - Fork 50
Description
Hi! Thanks for this great tool!
I've tried to configure it as a Git mergetool:
git config --global merge.tool fac
However, Git ignores it and it runs vimdiff
for me. Previously, I had opendiff
configured to start FileMerge and it works. I've also tried various different merge tools like sublimerge and I was expecting this to work tool.
git-mergetool
command should start the tool with 3 arguments for each file with conflicts. I understand fac
is supposed to be run for the whole set of merge conflicts and not just single files. However, for starters, it could start for the whole set and ignore the arguments passed to it. Later it could automatically move to the file which was passed to it.
Do you think there's a particular reason why git-mergetool
would not start fac
with the above configuration? I've already checked that fac
is in my PATH
.
Thanks!