Turn off autocomplete in PhpStorm

12,096

Solution 1

Disable code completion?

See Settings/Preferences(depends on OS) - IDE Settings - Editor - Code Completion

There you should find an option Autopopup code completion in (ms)

If the check box is not selected, PhpStorm will not suggest code completion automatically.

See also the online help.

Solution 2

This is more an answer to the linked "duplicate" question, but I can't answer that one. Hope this helps someone.

To disable HTML auto-completion, see Settings -> Editor -> General -> Smart Keys.

There is a section called XML/HTML where you can toggle auto-completion of HTML tags and attributes.

In my case I was looking to disable Auto close tags when typing '</' option.

Share:
12,096
pillarOfLight
Author by

pillarOfLight

Updated on June 13, 2022

Comments

  • pillarOfLight
    pillarOfLight almost 2 years

    Right now if I type in $ into Jetbrains PhpStorm IDE, it will display a whole bunch of suggestions (e.g. variables that have already been declared) which slows down my typing.

    Is there a way to configure PhpStorm to NOT do this? In other words, turn off auto-complete or only do auto-complete if I press Ctrl+Space and not when I just type in $?

  • Admin
    Admin almost 8 years
    Just to add, in WebStorm 11, it is in Editor -> General -> Code Completion
  • Shweta
    Shweta about 7 years
    In addition, if you are using webstorm or phpstorm in POWER SAVER MODE auto completion suggestion will not work.
  • MSpreij
    MSpreij about 6 years
    NB: for me it's called "Auto-display code completion" which is a simple boolean, and if I disable it, it also no longer expands my custom live templates.