Intellisense not working in code snippets - VS Code
I got the same error and I solved it with this configuration:
Mark answered the question above. If he is able to come back I'll accept his answer.
File > Preferences > Settings
Search for editor.suggest.snippetsPreventQuickSuggestions
.
Make sure the box is unchecked.
Thanks Mark!
By default, intellisence / quick suggestions will not be triggered inside of a snippet. To enable them set
"editor.suggest.snippetsPreventQuickSuggestions": false
true
is the default.
Editor > Suggest: Snippets Prevent Quick Suggestions
in the Settings UI.