Synonyms for `sout + Tab` in IntelliJ IDE for MyEclipse

I use the sout + Tabshortcut in IntelliJ IDEA for the operator System.out.println();. I want to know if there are synonyms for the above shortcut in MyEclipse ?

+5
source share
2 answers

In Eclipse, you can enter the following (so I think MyEclipse does the same):

Sysout + CTRL-SPACE
+6
source

In fact, you can do something similar in Eclipse (even with slightly fewer letters to type):

syso + CTRL-SPACE  == System.out.println();
syse + CTRL-SPACE  == System.err.println();

This is part of the many predefined templates found in> Preferences, Java | Editor | Patterns

+2
source