Monday, September 5, 2022

intelli j short cut keys

 

Ctrl + Shift + F

Search a word in All files in a project

Ctrl + Shift + N

Search for a file by name

Ctrl + N

Open any class quickly

Ctrl + E

Open recent files

Ctrl + Alt + à

Navigate further to the files

Ctrl + Alt + ß

Navigate to the previous files

Ctrl + F3

Navigate to occurrence in forward direction

Shift + F3

Navigate to occurrence in the backward direction

Ctrl + H

Type hierarchy / Class Hierarchy

Ctrl + Alt + L

Format Code inside a file

Alt + Enter

To import the classed from jars

Ctrl + Alt + O

Optimize imports (never import package/class, Only optimize)

Ctrl + F12

Open methods in pop up with All methods and variables

 

 

 

 

 

F8

Run/execute      // This will jump to another breakpoint

F10

Step Over            // This can be used to step by step line debugging

F11

Step Into              // This will go inside method call

F12

Close DevTools/end debugging

Ctrl + p

Open source code file in DevTools

 

No comments:

Post a Comment

Ruby Basics

Basics of Ruby   Start Ruby interpret On terminal just type rib ruby_docs $ irb 3 . 0 . 0 : 001 > name = "This is the first ...