Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ IDEA 12 code completion without capitalisation

In eclipse 4.2, I can just type:

joptionpane 

and press CTRL+SPACE and it will turn into:

JOptionPane 

Is there any way to do the same with intelliJ IDEA? I have tried pressing CTRL+SPACE, and ALT+/. But, for some reason it just does not work.

I would be most grateful if anyone could show me how to do this.

I am just trying out version 12 of IDEA, since some of my friends told me that it was a better IDE and had better code completion (their opinions).

like image 387
Games Brainiac Avatar asked Jan 02 '13 18:01

Games Brainiac


People also ask

How do I enable auto completion in IntelliJ?

By default, IntelliJ IDEA displays the code completion popup automatically as you type. If automatic completion is disabled, press Ctrl+Shift+Space or choose Code | Code Completion | Type-Matching from the main menu. If necessary, press Ctrl+Shift+Space once again.

How do I fix code in IntelliJ?

In the Project tool window, right-click a module or a directory and from the context menu, select Reformat Code or press Ctrl+Alt+L . In the dialog that opens, specify the reformatting options and click OK.


1 Answers

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

File -> Settings -> Editor -> Code completion -> Case sensitive completion

enter image description here

If you then type "jo" and hit TAB, it will expand to JOptionPane.

Updated screenshot for IntelliJ 15

enter image description here

Update screenshot for IntelliJ 2018

enter image description here

like image 172
dunni Avatar answered Oct 18 '22 01:10

dunni