I am wondering how to improve the diff command as part of hg. For example, lets say I have this code:
line 1
line 2
lin3 3
and I change it to become:
if($condition) {
line 1
line 2
line 3
}
hg diff will show the original three lines with a "-" and the new five lines with a "+". Even when I run with -wbB to ignore whitespace and line changes. I understand what it is trying to tell me, but isn't there way it could be "smarter" and realize that I've only added two lines (and increased level of three lines)?
EDIT: Is it possible to have hg diff tell you what text was added and where? As opposed to how the "structure" of the code changed because of those additions?
EDIT 2: I am running Debian (Linux dev 2.6.26) with Mercurial 1.0.1
Thanks

mdiff(1)andwdiff(1)are in thewdiffpackage on Ubuntu, might be just the tool. – sarnold Mar 22 '11 at 12:57