I have a question, how to make a snippet in vscode so when you type pr
and it will develop a code like this printf("type here\n");
I tried this :
"prefix" : "pr",
"body": ["printf(\"$1 \n \",$2)"]
},
But the output will be :
printf("",)
I have a question, how to make a snippet in vscode so when you type pr
and it will develop a code like this printf("type here\n");
I tried this :
"prefix" : "pr",
"body": ["printf(\"$1 \n \",$2)"]
},
But the output will be :
printf("",)