Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable popup suggest(or tips) window when typing in vscode?

When I type in:

const styles = StyleSheet.create({
  container: {}
})

Then I add a comma after container brace, it always popup a window to tip me some infomations I never watch.

container: {},

So what is this popup window? eslint tips? or something else?

Is it possible to disable this and how?

annoying popups

like image 386
TaoPaipai Avatar asked Dec 03 '18 05:12

TaoPaipai


People also ask

How do I turn off code suggestions in Vscode?

By default, VS Code shows snippets and completion proposals in one widget. You can control the behavior with the editor.snippetSuggestions setting. To remove snippets from the suggestions widget, set the value to "none" .

How do I disable IntelliSense?

You can enable or disable particular IntelliSense features in the Options dialog box, under Text Editor > C/C++ > Advanced. To configure IntelliSense for single files that aren't part of a project, look for the IntelliSense and browsing for non-project files section.


1 Answers

You can disable it with this parameter in user settings, according with reported issue:

"editor.parameterHints.enabled": false
like image 167
Inazense Avatar answered Sep 26 '22 18:09

Inazense