I\'ve enabled the default \"log\" snippet in VS Code. I also added another snippet. Neither show up when I type their prefixes. I have set editor.tabCompletion
to t
In case anyone else has this issue, I was working with react native and my JavaScript snippets weren't working. I checked settings.json by going to settings, searched for quick suggestions, and then edit in settings.json.
"files.associations": {
"*.js": "javascriptreact" // This needed changed to "javascript".
}
Otherwise, you can create the snippets for javascriptreact.