Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 7, 2020 04:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/df4be2fc698bd9787fd952dbb9947347 to your computer and use it in GitHub Desktop.
Save parzibyte/df4be2fc698bd9787fd952dbb9947347 to your computer and use it in GitHub Desktop.
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": { "other": false, "comments": false, "strings": false },
// Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
"editor.acceptSuggestionOnEnter": "off",
// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,
// Enable word based suggestions
"editor.wordBasedSuggestions": false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment