Disable automatic method completion in VS

When typing a mono Method such as

void Start()
{
}

in Visual Studio, tools for Unity automatically completes it to

private void Start()
{
      )
}

as soon as I type the first (.

The only way I have found to change this is to disable all of tools for Unity, which I don’t want to do.

Does anyone know how to edit this behaviour?

Did you explore the Visual Studio options for the Unity tools?

1 Like

This is the only menu I could find. Disabling Unity messages code completion stops the issue I had, but also disables all a lot of code completion I find helpful.

Changing the Unity Messages Scope removes the automatic private and I guess I can get used to the cursor jumping, I’ll just have to try to train myself not to type the second bracket.

Cheers for the reply, I’d overlooked that option when I first looked at the menu.