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 my case it was not working because I had a space in the name of the snippet
{
...,
"snippet name": { // it should be snippet_name. Notice the _
...
}
}
So make sure that:
{name}.code-snippets
file under .vscode
folderspaces
typescript
and typescriptreact
.