In Eclipse, how to let revision annotation to ignore whitespace changes?

1

1

In Eclipse, one can use Team -> Show Annotation to see the revision history at the side of editor window; My question is how to let such annotation to ignore whitespace changes?

[EDIT] This issue occurs to files containing any programming language, even text file containing English.

Computist

Posted 2012-01-20T00:30:21.220

Reputation: 2 341

Which language are you programming in? – iglvzx – 2012-01-20T00:38:19.927

This issue occurred for files containing codes of any language. For example C++, if it makes the question better defined. – Computist – 2012-01-20T20:24:13.040

1

Does this post help?

– harrymc – 2012-01-24T10:32:13.707

Answers

1

A vanilla Eclipse editor, as far as I know, will always show a change annotation, even if it's whitespace (you can only change the colours in which changes are displayed under General > Editors > Text Editors > Quick Diff). If you're talking about the compare editor, then you can simply right-click and check the "Ignore White Space" option.

To override this, you'd have to write your own plugin (in which case you might want to start by looking at the interface IQuickDiffReferenceProvider).

Amos M. Carpenter

Posted 2012-01-20T00:30:21.220

Reputation: 1 373

0

After this bug is fixed it works: https://bugs.eclipse.org/bugs/show_bug.cgi?id=379680

jan

Posted 2012-01-20T00:30:21.220

Reputation: 225