Is it possible to run kdiff3 instead of outputting text when I run hg diff? It can either be some switch or some setup that allows to hookup kdiff3.
Is it possible to run kdiff3 instead of outputting text when I run hg
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should look into the extdiff extension. That allows you to create new diff commands that can launch external diff tools, such as KDiff3.
You configure it with something like:
and you can then use
hg vdiffto get a graphical diff using KDiff3. Strangely, the extension doesn’t allow you to overload the normalhg diffcommand — it only lets you add new commands.