I am trying to switch from eclipse to Intellij. Immediatelly I have found a problem. In the eclipse you can type:
syso
and the presss:
CTRL + SPACE BAR
and this will result in:
System.out.println
What is the equivalent shortcut in Intellij?
I am trying to switch from eclipse to Intellij. Immediatelly I have found a problem. In the eclipse you can type:
syso
and the presss:
CTRL + SPACE BAR
and this will result in:
System.out.println
What is the equivalent shortcut in Intellij?
Equivalent shortcut in IntelliJ is sout
Just type sout you will get list of shortcut. Choose your option what you want to write and then press enter.
All shortcut to print string in IntelliJ:
sout + TAB Prints a string to System.out
souf + TAB Prints a formatted string to System.out
soutm + TAB Prints current class and method name to System.out
soutp + TAB Prints method parameter names and values to System.out
soutv + TAB Prints a value to System.out