Reputation: 56752
Sometimes when I jump into source code, e.g. from search or when looking up the declaration of something, the Eclipse text editor tries to display nearby long lines by horizontal scrolling. This happens even if the item I jumped to is well within the display without scrolling. I find this rather annoying, so:
Is there a way to disable this? I have searched in vain through all the editor settings.
Specifically, this is about Eclipse CDT, but I suppose the behaviour is the same in JDT.
Upvotes: 4
Views: 6110
Reputation: 1
right click on your eclipse shortcut and choose properties. in compatibility tab choose "windows xp(servicepack 3). http://www.vistax64.com/vista-general/133849-disable-dynamic-horizontal-scrolling-vista.html
Upvotes: 0
Reputation: 568
I was having the same issue and found these open bugs for it on the Eclipse Bugs:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=314208
https://bugs.eclipse.org/bugs/show_bug.cgi?id=321189
You can prevent it from happening when you switch the Code Folding off and reload the file.
grtz,
T
Upvotes: 1
Reputation: 1323203
This seems to happen in other eclipse editors too (like PDT for PHP)
It could have been related with the ScrolledFormText
, but the Plugin Spy tells us a WorkbenchWindow
class is concerned, as well as an AbstractDecoratedTextEditor
, that is in essence an org.eclipse.ui.texteditor.AbstractTextEditor
.
The source of that AbstractTextEditor
indicates having:
I am not sure how to change that behavior, except by contributing somehow to the active editor identifier (for instance, for java, "org.eclipse.jdt.ui.ClassFileEditor
"), and modifying that Action
.
Upvotes: 2