본문 바로가기

Backend/IDE

01/15 회고

반응형

Intellij 자주 사용하는 단축키

Ctrl + / 현재의 라인을 주석화 또는 주석 해제. 또는 Shift + Ctrl + /을 눌러 선택된 영역만큼의 주석화
Ctrl + Y 현재의 라인을 삭제
Ctrl + D 현재의 코드 라인을 복제
Shift + Ctrl + F 전체 파일에서 검색
Ctrl + Alt + O Import 최적화
Shift + Ctrl + 방향키 현재의 라인 또는 선택된 블록을 이동
Ctrl + mouse 코드를 링크처럼 타고 들어감
Ctrl + . 접기
Ctrl + Shift + S Setting화면 팝업 출력
Ctrl + P 함수호출시 인수 정보 확인 (within method call arguments)
Alt + Insert 코드 생성 (Getters, Setters, Constructors,hashCode/equals, toString)
Ctrl + O 메서드 오버라이드 구현
Ctrl + I 인터페이스 메서드 구현
Ctrl + Alt + T 다음으로 코드 감싸기… (if..else, try..catch, for,synchronized, etc.)
Ctrl + Alt + L 파일 단위 재정렬 (이클립스의 ctrl + shift + f)
Ctrl + Alt + I 줄단위 재정렬
Ctrl + R Replace
Ctrl + R Find
Ctrl + F4 Close active editor tab
Shift + F10 실행
Shift + F9 디버그 실행
Alt + Shift + F10 Select configuration and run
Alt + Shift + F9 Select configuration and debug
Ctrl + Shift + F10 Run context configuration from editor
Ctrl + F8 토글 브레이크포인트
Shift + F6 이름변경
Ctrl+ Alt + Shift + S Project Structure

 

 

CSS

hover 드롭다운 메뉴

<style>
.target {
  display: none;
  width: 33.3%;
  background: #eee;
  box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.3);
  padding: 10px;
}

.wrap:hover .target {
  display: block;
}
</style>
<div class="wrap">
  <p>source</p>
  <p class="target">show content</p>
</div>

 

+) 슬라이딩 이펙트

 

반응형

'Backend > IDE' 카테고리의 다른 글

IntelliJ-Github token이용 연동  (0) 2024.02.20
STS Maven 빌드  (0) 2024.02.19
01/03 회고  (0) 2024.01.03
[IntelliJ] Context path 확인하기  (0) 2023.09.14
[IntelliJ] Gradle Error  (0) 2023.09.11