I've recently gotten back to game development and I would rather use vscode over visual studio for convenience.
Now Intellisense is mostly working, but methods won't show up.
For example:
As you can see, intellisense seems to be working fine here, but when I try doing something like this (picture is taken from visual studio community):

It won't work:
It might be obvious but I cant pinpoint why it's not working. I tried googling it, but to no avail.
Any clues?
VS Code doesn't autocomplete methods like Update, Awake and OnTriggerEnter in MonoBehaviours because they are "magical" methods that are not virtual or abstract, but you can install an extension that contains those methods as snippets.
I tried it but didn't like it.
You may like it though: Unity Code Snippets.