IntelliJ는 마우스를 올리면 JavaDocs 툴팁을 표시합니다.
Eclipse에서 메서드, 변수 등을 가리키면 해당 JavaDocs와 함께 도구 설명이 표시됩니다. IntelliJ에 그러한 기능이 있습니까?
대한 인 IntelliJ (13) , IDE 설정에서 편집기의 페이지에서 체크 박스가있다
편집 : 들어 인 IntelliJ (14) , 옵션 편집기> 일반 페이지로 이동되었습니다. "기타"그룹의 마지막 옵션입니다. (Mac의 경우 옵션은 "IntelliJ Idea"> "Preferences"메뉴에 있습니다).
편집 : 들어 인 IntelliJ (16) , 그것은 다른 편집기> 일반>의 마지막에서 두 번째 옵션들 중 하나입니다.
편집 : 들어 IntelliJ를 궁극적 인 2016.1 ,이 편집기> 일반> 코드 완료로 이동합니다.
편집 : 들어 IntelliJ에 궁극적 인 2017.2, 인 IntelliJ의 IDEA 2017년 2월 3일 일명 , 실제로 두 가지 옵션이 있습니다 :
- In Editor> General> Other (section)> Show quick documentation on mouse move-delay 500 ms
- 캐럿 기호에 대한 빠른 문서를 표시하려면이 확인란을 선택합니다. 지정된 지연 후 빠른 문서 팝업 창이 나타납니다.
- 편집기> 일반> 코드 완성 (하위 항목)> 명시 적으로 호출 된 완료를위한 자동 팝업 문서화 (1000ms)
- IntelliJ IDEA가 현재 조회 목록에서 강조 표시된 클래스, 메서드 또는 필드에 대한 설명서가있는 팝업 창을 자동으로 표시하도록하려면이 확인란을 선택합니다. 이 확인란을 선택하지 않은 경우 Ctrl+ Q 를 사용 하여 캐럿 요소에 대한 빠른 문서를 표시합니다.
- 빠른 문서화 창은 코드 완성이 명시 적으로 호출 된 경우에만 지정된 지연과 함께 자동으로 팝업됩니다. 자동 코드 완성 목록의 경우 문서 창은 Ctrl+ 를 누를 때만 표시됩니다 Q.
IntelliJ 버전 11까지는 마우스를 가져가는 것만이 아닙니다. 커서가 메서드 또는 속성 이름 안에 있으면 CTRL+ Q는 * nix 및 Windows에서 JavaDoc을 표시합니다. MacOSX에서 이것은 CTRL+ J입니다.
인용구 : "아니요, 전체 javadoc을 보는 유일한 방법은 Quick Doc (Ctrl-Q)을 사용하는 것입니다." -http : //devnet.jetbrains.net/thread/121174
편집하다
IntelliJ에 12.1 때문에, 이것은 이다 가능. @ADNow의 답변을 참조하십시오.
12.1에서 가능합니다.
IDE가 설치된 모든 위치의 BIN 폴더에서 idea.properties 를 찾습니다 ( 예 : C : \ Program Files (x86) \ JetBrains \ IntelliJ \ bin).
해당 파일 끝에 새 줄을 추가합니다.
auto.show.quick.doc=true
IDEA를 시작하고 마우스를 무언가 위로 가져갑니다.
CTRL+를 수행 한 후 다음을 수행 Q할 수 있습니다.
- 툴팁 고정 (오른쪽 상단)
- 도킹 모드 확인 (고정 후 오른쪽 상단의 기어 아래)
- 원하는 크기
- 선택한 항목에 대한 문서 자동 표시 아이콘을 클릭
그런 다음 커서를 이동하면 문서가이 상자에 나타납니다. 약간의 화면 공간이 필요하지만 그만한 가치가 있습니다.
스크린 샷을 게시하고 싶지만 이미지 게시는 허용하지 않습니다.
Intellij13에서는 아래와 같이 Editor 구성을 사용할 수 있습니다.
Intellij 15의 경우 Show quick documentation on mouse moveFile > Settings > Editor > General
옵션 의 확인란을 사용하십시오 .
검색 창에 "quick"또는 이와 유사한 것을 입력하여 이동할 수도 있습니다.
하게 IntelliJ IDEA 14.0.3 궁극적 인 :
보도 Ctrl+ Alt+ S, 다음을 선택 Editor\General
선택Show quick domentation on mouse move
팁 : JavaDoc 팝업 창에서 오른쪽 상단 모서리 (톱니 바퀴 아이콘)를보고 다음을 선택할 수 있습니다
.-도구 모음 표시
-고정 모드
-도킹 모드
-플로팅 모드
-분할 모드
Adding on to what ADNow said. On the Macintosh:
- Right click on IntelliJ IDEA 12
- Click on the Show Package Contents menu option
- Open the bin folder
- Open idea.properties
Add the line:
auto.show.quick.doc=true
The easiest way, at least for me, was:
- Ctrl+Shift+A
- Type: show document
- Show quick documentation on mouse move (set it to ON)
For IntelliJ Ultimate 2018.1.5, aka IntelliJ IDEA 2018.1.5, there are actually two options:
- In Editor > General > Other (section) > Show quick documentation on mouse move - delay 500 ms
- Select this check box to show quick documentation for the symbol at caret. The quick documentation pop-up window appears after the specified delay.
- In Editor > General > Code Completion (sub-item) > Auto-display documentation in 1000 ms
- Select this check box to have IntelliJ IDEA automatically show a pop-up window with the documentation for the class, method, or field currently highlighted in the lookup list. If this check box is not selected, use Ctrl+Q to show quick documentation for the element at caret.
- Quick documentation window will automatically pop up with the specified delay in those cases only, when code completion has been invoked explicitly. For the automatic code completion list, documentation window will only show up on pressing Ctrl+Q.
In IntelliJ IDEA 14, it has moved to: File -> Settings -> Editor -> General -> "Show quick doc on mouse move"
IDEA has "find action":
Open "Help" menu, type "doc", move cursor to "Quick Documentation" it will be highlighted.
Also "find action" can be called from hot key (you can find it in settings->hotkeys)
File-->Settings-->Editor
Check "Show quick doc on mouse"
Now when you put the mouse over a method a tooltip with the documentation will appear. Sometimes the tooltip size is too small and you will have to resize it moving the mouse down to the bottom of the tooltip.
On mac in IntelliJ Ultimate (trial) 14 I have mine under Settings > Editor > General > Code completion
. The tooltip short is F1 on my laptop.
It's called "Autopopup documentation in (ms):"
A note for Android Studio (2.3.3 at least) users, because this page came up for my google search "android studio hover javadoc", and android studio is based on Intellij:
See File->Settings->Editor->General: "show quick documentation on mouse moves", rather than File->Settings->Editor->General->Code Completion "Autopopup documentation in (ms) for explicitly invoked completion" and "Autopopup in (ms)", which has been previously talked about.
On my IntelliJ U on Mac I need to point with cursor on some method, variable etc. and press [cntrl] or [cmd] key. Then click on the link inside popup window which appeared to see JavaDocs
All of the above methods are useful but one basic thing missing you need to have src.zip in your JDK (C:\Program Files\Java\jdk1.8.0_171). I assumed it comes preinstalled but for some reason, it was not present in my installation. Another thing to check is if your project is using the specified (1.8.0_171 in this case) JDK.
I tried many ways mentioned here, especially the preference - editor - general - code completion - show documentation popup in.. isn't working in version 2019.2.2
Finally, i am just using F1
while caret is on the type/method and it displays the documentation nicely. This is not ideal but helpful.
The answer is CTRL + P (NOT CTRL + Q)
Someone else posted this answer on JetBrains forum: The idea is a different IDE. Try to discover its features and try to make the best of it, rather than trying to emulate whatever you used before. For the most part, Idea has very high usability (much better than Eclipse IMHO) and is streamlined for supporting code editing as best as possible (rather than relying on wizards too much for example).
- Javadoc: Ctrl-Q
- A quick view of the implementation: Ctrl-Shift-I
- Show context: Alt-Q
- Show parameters (in a method call): Ctrl-P
- Show error description. Ctrl-F1
... plus many more shortcuts to navigate in code and different idea views.
I think it rather nice that you can see just the specific bit of information you are interested in with a simple keystroke. Have a look at the menus which will also show the possibly modified shortcuts for your keymap.
0 Avatar Jens Voß Created June 12, 2008, 09:26 And, elsandros, in addition to what Stephen writes: Since you seem to be interested in IDEA's keyboard shortcuts, I highly recommend the "Key Promoter" plugin which helps you memorize the relevant shortcuts quickly.
또한 매우 유용에 의해 호출 된 "고토 작업"기능입니다 Ctrl- Shift- A. 팝업에서 키워드 (예 : "Javadoc")를 입력 할 수 있으며 IDE는 키보드 단축키 및 포함 된 작업 그룹과 함께 검색과 일치하는 사용 가능한 작업을 알려줍니다 (종종 탐색 방법에 대한 단서를 제공합니다. 메뉴를 사용한 작업).
참고 URL : https://stackoverflow.com/questions/6615516/intellij-show-javadocs-tooltip-on-mouse-over
'developer tip' 카테고리의 다른 글
여러 열의 SQLite 기본 키 (0) | 2020.10.03 |
---|---|
앞으로 선언은 언제 사용할 수 있습니까? (0) | 2020.10.03 |
Git은 푸시 할 때마다 사용자 이름을 묻습니다. (0) | 2020.10.03 |
한 줄 Bash 무한 while 루프 구문 (0) | 2020.10.03 |
두 날짜 사이의 일 수 찾기 (0) | 2020.10.03 |