Eclipse에서 줄 번호를 어떻게 표시 할 수 있습니까?
Eclipse에서 기본적으로 줄 번호 를 표시하려면 어떻게 해야합니까?
창 → 환경 설정 → 일반 → 편집기 → 텍스트 편집기 → 줄 번호 표시 .
편집 : 나는 이것을 오래 전에 썼지 만 @ArtOfWarfar와 @voidstate가 언급했듯이 이제 간단하게 할 수 있습니다.
거터를 마우스 오른쪽 버튼으로 클릭하고 "줄 번호 표시"를 선택합니다.
이것이 작동하지 않으면 현재 설정으로 재정의 될 수 있습니다. 줄 번호가 일반적으로 나타나는 코드 왼쪽의 막대를 마우스 오른쪽 버튼으로 클릭하고 상황에 맞는 메뉴를 사용하여 켤 수 있습니다.
2015 년 11 월 업데이트 :
Eclipse Mars 4.5.1에서 줄 번호는 기본적으로 다시 꺼져 있습니다. 활성화하려면 아래 지침을 따르십시오.
2013 년 12 월 업데이트 :
Lars Vogel은 방금 자신의 블로그에 게시했습니다 .
줄 번호는 오늘부터 Eclipse SDK Luna (4.4)에서 기본값입니다.
(2013 년 12 월 10 일)
사용자가 기본적으로 Eclipse IDE의 텍스트 편집기에서 줄 번호를 활성화하려는 경우 사용자 설문 조사를 수행했습니다.
응답은 매우 분명했습니다.
YES : 80.07% (1852 responses)
NO : 19.93% (461 responses)
Total : 2313
Skipped: 15
와 버그 421313 , 검토 - 행 번호가 기본적으로 활성화되어야 우리는 이클립스 SDK 빌드를 위해 그것을 사용 가능, 본인은 이클립스 패키지가 따를 것입니다 가정합니다.
2014 년 8 월 업데이트
Eclipse Mars 4.5M1의 경우 줄 번호 기본 길이 는 이제 80이 아닌 120 입니다.
" Eclipse의 텍스트 편집기 코드 형식을 사용자 정의하는 방법 "을 참조하십시오 .
원문 답변 (2009 년 3 월)
실제로 기본적으로 사용하려면 Eclipse를 시작하기 전에 다음을
[workspace]\.metadata\.plugins\org.eclipse.core.runtime\.settings\org.eclipse.ui.editors.prefs
포함 하는 스크립트를 작성할 수 있습니다.
lineNumberRuler=true
( [workspace]
eclipse 작업 공간의 루트 디렉토리가 됨)
그러면 eclipse가 "기본적으로 표시되는 행 번호"로 열립니다.
그렇지 않으면 'CTRL + 1'을 입력 한 다음 "line"을 입력하면 "줄 번호 표시"명령에 액세스 할 수 있습니다
(옵션의 텍스트 편집기 부분에서 "줄 번호 표시"옵션으로 전환됩니다.).
또는 Windows 환경 설정에서 "numb"를 입력하여 텍스트 편집기 부분에 액세스 할 수 있습니다.
블로그 " Mkyong.com "의 " Eclipse에서 줄 번호를 표시하는 방법 "의 사진
As simple as that. Ctrl+F10, then N, to Show or hide line numbers.
Reference : http://www.shortcutworld.com/en/win/Eclipse.html
Slight variation on Mac OSX:
Eclipse → Preferences → General → Editors → Text Editors → Show line numbers
Windows → Preferences → General → Text Editors → Show numberlines
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
Go to Windows → Preferences → General → Text Editors → Show numberlines. Click OK, then Apply changes. Then it will show the line count automatically.
one of the easy way is using shortcuts like : Ctrl+F10, then press n "it show line number and hide line numbers.
The top answer is good but you can also bind it to a key ( shorcut ) to toggle it..
Window > Preferences > Keys then enter "Line Numbers" in filter and bind it to a key.
I use CTRL + S + L.
Open Eclipse
goto -> Windows -> Preferences -> Editor -> Text Editors -> Show Line No
Tick the Show Line No checkbox
click on window tab and click on preferences
do this and check show line number
the eclipse changes the perferences's position
to eclipse -> perferences
On a Mac do this:
cmd + , or ADT -> Preferences
Expand General -> Editors ->Text Editors
Check box: Show line numbers
Eclipse has a search feature in the top left box of the Preferences. Type in 'line numbers' in that search box, and presto...
In case you're tired of googling each time you forget...
this will be the appropriate solution for asked question:
문자열 lineNumbers = AbstractDecoratedTextEditorPreferenceConstants.EDITOR_LINE_NUMBER_RULER; EditorsUI.getPreferenceStore (). setValue (lineNumbers, true);
참고 URL : https://stackoverflow.com/questions/640884/how-can-i-show-line-numbers-in-eclipse
'Program Tip' 카테고리의 다른 글
POST 쿼리 매개 변수를 검색하는 방법은 무엇입니까? (0) | 2020.09.29 |
---|---|
JavaScript에서 여러 값을 반환 하시겠습니까? (0) | 2020.09.29 |
JavaScript의 HTTP GET 요청? (0) | 2020.09.29 |
과 (0) | 2020.09.29 |
Python에서 증가 및 감소 연산자의 동작 (0) | 2020.09.29 |