Reputation: 1
So I just started coding with vs code, and curious about how to keep showing this module list. Because it's going to help me so much to define what I must be supposed to code after the module before.
How to show this list?
Upvotes: 0
Views: 2117
Reputation: 9229
This is IntelliSense, a function of vscode.
IntelliSense is a general term for various code editing features including: code completion, parameter info, quick info, and member lists. IntelliSense features are sometimes called by other names such as "code completion", "content assist", and "code hinting."
You could install the extension and get code tips.
You can also refer to the document of vscode for more details.
Upvotes: 0
Reputation: 88
That is called intelliSense and you have to download it to enjoy it :)
Upvotes: 1