How can I show line numbers by default in Eclipse?
|
|
Window -> Preferences -> General -> Editors -> Text Editors -> Show line numbers. |
|||||||||||||||||||||
|
|
If this doesn't work it may be overridden by your current settings. You can right-click in the bar to the left of the code where line numbers would normally appear and turn them on with the context menu.
|
||||
|
To really have it by default, you can write a script which ensure, before launching eclipse, that:
(with Otherwise, you can also type 'CTRL+1' and then "line", which will give you access to the command "Show line numbers" Or you can just type "numb" in Windows Preferences to access to the Text Editor part:
Picture from "How to display line numbers in Eclipse" of blog "Mkyong.com" |
||||
|
|
|
Go to Windows → Preferences → General → Text Editors → Show numberlines. Click OK, then Apply changes. Then it will show the line count automatically. |
||||
|
|
in this file [workspace].metadata.plugins\org.eclipse.core.runtime.settings\org.eclipse.ui.editors.prefs make sure the parameter lineNumberColor=0,0,0 is NOT 255,255, 255, which is white |
|||||
|
|
Slight variation on Mac OSX: |
|||
|
|
|
this will be the appropriate solution for asked question: String lineNumbers = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_LINE_NUMBER_RULER; EditorsUI.getPreferenceStore().setValue(lineNumbers, true); |
|||
|
|

