IntelliJ IDEA 12 code completion without capitalization

In eclipse 4.2, I can simply enter:

joptionpane 

and press CTRL + SPACE and it will turn into:

 joptionpane 

Is there a way to do the same with intelliJ IDEA? I tried to press CTRL + SPACE and ALT + / . But for some reason this just doesn't work.

I would really appreciate it if someone could show me how to do this.

I am just testing version 12 of IDEA, as some of my friends told me that this was the best development environment and it had the best code completion (their opinion).

+72
java intellij-idea
Jan 02 '13 at 18:43
source share
2 answers

You can disable case-sensitivity of code completion in the settings menu:

File β†’ Settings β†’ Editor β†’ Code Termination β†’ Case-sensitive completion

enter image description here

If you then type β€œjo” and press β€œTAB”, it will expand to JOptionPane.

Updated screenshot for IntelliJ 15

enter image description here

+144
Jan 02 '13 at 19:32
source share

IDEA is very sensitive to capitalization, so I doubt it will ignore it. You can enter JOP+<tab> and this will give you JOptionPane.

+2
Jan 02 '13 at 18:45
source share



All Articles