I am trying to create a custom tool in TextPad to call the Tortoise SVN merge tool.
If I have two files open in TextPad, I want to diff them with TortoiseMerge by going to Tools -> TortoiseMerge in TextPad. I don't want to have to manually add any file paths, I want these to be picked up via TextPad.
I am having trouble with the parameters for the tool, here is what I have:
Command: C:\Program Files\TortoiseSVN\bin\TortoiseMerge.exe
Parameters: $File $File
Initial folder: $FileDir
This successfully diffs the same file - is there any means of getting the path to the other open file .. a similar $File variable or some other means..?
Many thanks.