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
editor.tabCompletion
Don't forget to specify the language in global snippet. In my case it fixed.
{ "Print to console": { "scope": "javascript,vuex,vue", "prefix": "debes", "body": [ "// eslint-disable-next-line", "debugger;" ], "description": "Log output to console" } }