xxxxxxxxxx
// ctrl+shift+p
// enter '>user snippets'
// select New global snippets file
// write your custom file name
{
"Print to console": {
"prefix": "lg",
"body": [
"console.log('${CLIPBOARD:RENDER}====', ${1:${CLIPBOARD}});",
"$2",
// or
// "console.log('${1:${CLIPBOARD:RENDER}}====', ${2:${CLIPBOARD:'$3'}});",
// "$4"
],
"description": "Log output to console",
},
}