Visual Studio 2015 Community is all of a sudden behaving a little differently with its function completion
Normally I'd start typing for example:
Void Sta
At this point Autocomplete kicks in:
Now when I press enter, what should happen is only the word is autocompleted so I would simply end up with void Start
However what ends up happening instead is this:
private void Start()
{
}
I've looked around everywhere in the settings menu and can't find anywhere to disable this. I've tried toggling on and off suggestion/autocomplete modes (Ctrl+Alt+Space), this does not do what I want.

