I would like to modify the default code snippets for C++ in Visual Studio Code. I've found a similar question here, but they actually show how to create your own snippets - and not how to modify the default snippets.
The reason I want to do this is because I'm used to doing some things a bit differently than how they are done in the snippets. For example, this is what appears when I use the if
snippet:
if (/* condition */)
{
/* code */
}
And I would like it to be like this:
if(/* condition */){
/* code */
}
Is there any way to achieve what I want to do? Thank you.
c
, instead ofif
typecif
– Refreshment