Stretch0
Stretch0

Reputation: 9275

How to remove code suggestion / help popup in sublime 3

I keep getting this annoying code help popup in sublime 3.

It seems to have only appeared recently. I'm not sure if it's part of sublime or some plugin.

Is there a way to disable this from showing?

EDIT:

Turns out this is to do with the package Naomi. Does anybody know if this is a configurable setting with this package?

enter image description here

Upvotes: 2

Views: 1170

Answers (2)

Jay
Jay

Reputation: 1

I installed sublime, and disable completions popup by adding

"auto_complete": false

to the preferences.

You get to the preferences by: Menu Preferences -> Settings. There, you are supposed to edit the User Preferences file by adding custom prefs like the above snippet between the existing curly braces.

Upvotes: 0

Vijay Raval
Vijay Raval

Reputation: 31

you need to do following steps:

  1. Go sublime Menu bar
  2. select preferences
  3. add this following code to user file and save it.

Blockquote

{
       // Controls auto pairing of quotes, brackets etc
       "auto_match_enabled": false,
       // Enable visualization of the matching tag in HTML and XML
       "match_tags": false,
 }

Upvotes: 1

Related Questions