Krzysztof Borowy
Krzysztof Borowy

Reputation: 548

Disable intellisense in 1.17

With today's VScode update 1.17, IntelliSense for import paths is turned on automatically. However, I've been using extensions to use this feature before.

Is there a way to turn off VScode's IntelliSense?

Upvotes: 0

Views: 369

Answers (1)

Mark
Mark

Reputation: 182491

If you are using javascript, for example:

"[javascript]": {
      "editor.quickSuggestions": false
}

It turns off all intellisense for .js files. If you are using a different language, you could do the same. See the "language specific configuration settings..." after CTRL-Shift-P and choose your language. It will automatically create an empty ruleset in your settings.json file and you could add the editor.quickSuggestions rule above to it.

Also look at

// Enables pop-up that shows parameter documentation and type information as you type "editor.parameterHints": true,

Upvotes: 1

Related Questions