TaoPaipai
TaoPaipai

Reputation: 296

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

Upvotes: 10

Views: 4685

Answers (1)

Inazense
Inazense

Reputation: 1724

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

"editor.parameterHints.enabled": false

Upvotes: 12

Related Questions