IntelliJ IDEA 12代码完成,无需大写

在 eclipse4.2中,我可以直接输入:

joptionpane

然后按下 ABC0 + SPACE就会变成:

JOptionPane

有没有什么方法可以对智能 IDEA 做同样的事情呢?我试过按 ABC0 + SPACEABC2 + /。但是,由于某些原因,它就是不工作。

如果有人能告诉我怎么做,我将不胜感激。

我只是在尝试 IDEA 的12版本,因为我的一些朋友告诉我这是一个更好的 IDE,并且有更好的代码完成(他们的观点)。

13328 次浏览

IDEA is very senstive to capitalisation so I doubt ti will ignore it. You can type JOP+<tab> and it will give you JOptionPane.

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