Reputation: 452
The source code I'm working with has many files where the first 15 characters of a file name are the same. When multiple files are open in Eclipse the tabs all look the same. I have searched online and not come up with any answers, including a vague reference on this site, where someone asked a similar question, but the suggestions more had to do with configuring the number of tabs, not the number of characters in the file name appearing on the tab.
As far as I can tell, the ability to configure this does not seem to appear in Preferences for Eclipse; but then again, I'm relatively new to it. I would like to have wider tabs, displaying the unique portion of the file name.
Upvotes: 2
Views: 221
Reputation: 111142
No this can't be changed using a preference.
The width seems to be hard coded in the stack rendering code (org.eclipse.e4.ui.workbench.renderers.sw.StackRenderer
) so it would require a custom renderer to change.
Upvotes: 1