본문 바로가기

Tip of the day31

[Tip of the Day] IntelliJ : Switch scheme Switch scheme You can apply a different code style, coloring scheme, or keymap with a single keystroke right from the editor. Press Ctrl Back Quote (View | Quick Switch Scheme) to specify the scheme you want to switch to. 2023. 9. 22.
[Tip of the Day] IntelliJ : View Git blame annotations View Git blame annotations Git annotations show detailed information on the origin of each code line (right-click the gutter and select Annotate with Git Blame). Right-click an annotation and choose Show Diff to review the differences between the current and the previous version of the file. 2023. 9. 21.
[Tip of the Day] IntelliJ : Duplicate a code block or a line Duplicate a code block or a line Press Ctrl D in the editor to duplicate the selected code block, or the current line when no block is selected. 2023. 9. 20.
[Tip of the Day] IntelliJ : Code completion Code completion When using code completion, you can accept the currently highlighted selection in the popup list by pressing Tab . Unlike accepting with Enter , the selected name will overwrite the rest of the name to the right of the caret. This can be especially useful for replacing one method or variable name with another. 2023. 9. 19.
[Tip of the Day] IntelliJ : Local History Local History Local History lets you track all changes to files, classes, methods, or any code fragments and roll back to any stable point if necessary. To view local history, from the main menu, select File | Current File | Show History. 2023. 9. 1.
[Tip of the Day] IntelliJ : Debugger Debugger If you want to log program state during debugging, use non-suspending breakpoints. Select the expression that you want to log, hold Shift , and click the gutter at the line where the expression should be logged. In the example, sent.size() will be logged upon reaching line 24. 2023. 8. 4.
[Did you know] Ctrl + D . 최초작성 : 2016. 07 08.. 최종수정 : 2016. 07. 08.. 작성/수정내용 : - Ctrl + D Ctrl + D Ctrl+D in the editor duplicates the selected block or the current line when no block is selected. Ctrl+D는 에디터 상에서 선택영역이나 커서가 위치한 라인을 복사해 주는 기능입니다.영역이 선택된 상태라면, 선택 영역 바로 다음에 선택된 영역을 복사해 주고단순히 커서만 있다면 바로 아래줄에 커서가 있는 라인을 복사해 줍니다. 잘 사용하시는 분들도 계시겠지만 Ctrl+C 를 하여 원하는 부분에 삽일 가능한 Ctrl+V가 있어서 활용 용도는 높지 않을 거라고 생각되네요.. # 혹시 해석이 잘못되었드.. 2016. 7. 14.