IntelliJ IDEA 12 code completion without capitalisation

后端 未结 2 1183
野性不改
野性不改 2020-12-13 01:37

In eclipse 4.2, I can just type:

joptionpane

and press CTRL+SPACE and it will turn into:

<         


        
相关标签:
2条回答
  • 2020-12-13 01:49

    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

    Update screenshot for IntelliJ 2018

    0 讨论(0)
  • 2020-12-13 02:12

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

    0 讨论(0)
提交回复
热议问题