Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Autocomplete on space key in IntelliJ

How to disable auto completion on space key on Intellij

Problem: I always type "... = ". Mention the space after "=". The problem is that the auto completion popup comes immediately after inserting the "=" so pressing space as next key always applies first proposal.

IntelliJ 2016.1.2

like image 616
Marcel Avatar asked May 18 '16 10:05

Marcel


People also ask

How do I turn off autocomplete in IntelliJ?

Go to Settings / Preferences | Editor | General | Postfix Completion and select the Enable postfix completion checkbox.

How do I disable Tabnine in IntelliJ?

So do as Arnaud says, go to Settings->Plugins->Installed, select Tabnine, then the wheel, then diable. After that is done, accept. Then open same thing again, go to installed, select TabNine, then uninstall. That's it.

What is autocomplete in IDE?

Intelligent code completion, which is similar to other autocompletion systems, is a convenient way to access descriptions of functions—and in particular their parameter lists. The feature speeds up software development by reducing keyboard input and the necessity for name memorization.

How do I turn off autocomplete in Pycharm?

Go to File > Settings (or Ctrl + Alt + S ) > [IDE Settings] > Editor > Code Completion. The "Autopopup code completion" setting will determine if the popup opens automatically. Below it, the "Insert selected variant by typing dot, space, etc." is likely the setting you want to turn off.


2 Answers

You can disable this by going to the preferences -> editor -> general -> code completion

There you should find a checkbox "Insert selected variant by typing dot, space, etc. This you want to disable.

Now it will only complete on Ctrl+space, tab, enter, etc

like image 60
Gerard de Brieder Avatar answered Oct 04 '22 01:10

Gerard de Brieder


If you want to do the same for a live template, it is under preferences -> editor -> live templates and you have a dropdown at the top

enter image description here

like image 40
seb Avatar answered Oct 04 '22 01:10

seb