I have defined a custom snippet as below into javascriptreact.json
{
"Console Logging": {
"prefix": "clg",
"body": "console.log('DEBUG::${1:key}', ${1:key});",
"description": "Console Logging with DEBUG key"
}
}
Now I thought in any files with extension .js, I can simply type clg and the above body will showed up but that's not the case. It seems like I still need to find some way to sort of "activate" the snippet? Unlike atom where it gets activated automatically? What am i missing?