본문 바로가기

Mac10

Intellij - Editor basics Expand and shrink the code selection - [option + ↑ or. option + ↓] 선택된 코드 범위를 점점 올려준다(낮춰준다) Comment line - [cmd + '/'] 한 줄, 또는 드래그한 범위를 주석 on/off 시킨다. Duplicate lines - [cmd + D] 현재 라인 or 드래그한 라인 복사 Delete lines - [cmd + Backspace] 현재 라인 제거 Move code fragments - [option + shift + ↑ or. option + shift + ↓] 현재 라인의 코드 통째로 라인 이동 Move the whole method up down - [cmd + shift + ↑ or. cmd + shift + ↓] 메.. 2022. 3. 10.
Intellij - Essential Context actions - [option + enter] 인텔리제이에서 수정해야할 것으로 추측되는 부분에서 [option+enter]를 입력하면 몇 가지 수정 사항을 제안해준다. Search for actions - [cmd + shift + a] 어떤 액션(기능)을 찾고 싶을 때 Search for actions를 이용하면 간단하게 찾을 수 있다. Search Everywhere - [shift * 2] 액션을 포함한 모든 범위에서 검색을 할 때는 Search Everywhere를 사용하면 된다. Find only classes or search only in specific directories - [cmd + o] 클래스를 찾을 때는 이 기능을 사용하면 된다. 오른쪽 위에서 클래스를 찾을 범위.. 2022. 3. 10.
Intellij - 단축키 정리 Make Test (Test파일 간단하게 만들기) - [Ctrl + Shift + t] Extract Method (선택한 블록 메소드화 하기) - [Ctrl + Shift + m] Generate Basic (생성자, Getter/Setter, toString과 같은 코드 생성) - [Alt + Insert] Code AutoComplete (클래스 입력시 {className}(); 자동완성) - [Ctrl + Shift + Enter] Duplicate current line (복사해서 밑에 바로 생성) - [Ctrl + d] For static import (static import로 코드 길이 줄일 수 있는듯??) - [Alt + Enter] Mac Project information (프로젝트 .. 2021. 10. 13.
Intellij - 코드 변경에 따른 자동 import File - Settings - Editor - General - Auto import 순으로 들어가서 Optimize imports on the fly 옵션에 체크해주면 됩니다. 또한 Insert imports on paste 에 Always 옵션을 주면 코드를 복사해왔을때 자동으로 import가 됩니다. 2021. 9. 22.