3

I would like to configure Mercurial to be able to do something like "hg diff -S", but with an external diff tool (kdiff3, specifically). The logical way to do this would be something like

hg extdiff -S -p kdiff3

However, this does not work because the extdiff extension does not support the "-S" option that many other mercurial commands use to include subrepositories. Is there a workaround?

Quentin
  • 33
  • 2

1 Answers1

2

No, I'm afraid not -- adding a --subrepos flag to the extdiff extension was not on the wishlish when my client sponsored the work on the other commands.

Martin Geisler
  • 72,968
  • 25
  • 171
  • 229