views:

76

answers:

2

In netbeans, if I open a file which is under version control the lines which are modified are highlighted in the left. (green for new lines and blue for modified lines)

Is it possible to get a similar effect in Eclipse?

A: 

In eclipse too you will get the line highlighted which is changed util you save the file. and highlight is nothing but the change in color at the left panel of the editor before the start of that changed line.

GK
I believe the author is looking for a way to see what lines have been changed between project *commits*, instead of between file *saves*.
Benjamin Manns
As Benjamin mentioned, I was looking for the changes between project commits and not between file saves.
Sudar
sorry I thought between the saves. But anyways this is also useful for somebody who don't know.
GK
+1  A: 

With Subversive, you can do Team > Show Annotations, and it will annotate the lines with the author and date of the last modification of that line.

thSoft
Thanks. This is more or less what I was looking for. But it would be really great, if it just shows the diff between the current version of the repository and the local changes that I have made. Is it possible to do that?
Sudar
You can limit the annotations to a range of revisions. Selecting from the last revision to HEAD approximates what you may want (at me, HEAD..HEAD causes Operation failed).
thSoft