Is there a way to turn off automatic closing curly brace insertion in vscode? I've gone through the editor settings one by one and turned off everything that was related to formatting, but there was nothing I saw specifically for this.
For example, when I type something like
function()
{
vscode immediately adds }
so that I end up with
function()
{}
Then, I press enter, and it has automatically indented the cursor. I don't want it to do any of that. I don't want it to auto insert any closing character or any indentations. I basically just want it to stop helping me and let me type the way I want to type. But I cannot figure out if there is any setting for this?
I'm probably the only person in the word who wants this "feature" so I won't be surprised if this isn't possible.
"editor.autoClosingQuotes": "never", "html.autoClosingTags": false
– Mirko