9

enter image description here

When using VSCode you get a bunch of unnecessary items when you Ctrl+Space inside of a React component.

Any idea how to remove them?

2
  • 1
    Currently, you can't remove items from intellisense suggestions. Your best bet would be to create a feature request and ask for the ability to hide snippets from intellisense. Commented Apr 3, 2016 at 21:31
  • 1
    Awesome, thanks, done: github.com/Microsoft/vscode/issues/4934 Commented Apr 4, 2016 at 23:54

1 Answer 1

10

It looks like this is supported now, just add the following to your VS Code settings.

{
    "editor.snippetSuggestions": "none" // or "top", "bottom", "inline", etc.
}

See also this question: Hide snippets when showing the intellisense to get properties in VsCode

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.