Newbie007
Newbie007

Reputation: 1

How to Show Module List in VS Code?

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?

screenshot of list

Upvotes: 0

Views: 2117

Answers (3)

MingJie-MSFT
MingJie-MSFT

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

eshirvana
eshirvana

Reputation: 24568

also there are some AI powered auto complete tools :

  1. TabNine
  2. GitHub Copilot
  3. Kite

Upvotes: 1

parmicciano
parmicciano

Reputation: 88

That is called intelliSense and you have to download it to enjoy it :)

Upvotes: 1

Related Questions