'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



Solution 1:[1]

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

Solution 2:[2]

also there are some AI powered auto complete tools :

  1. TabNine
  2. GitHub Copilot
  3. Kite

Solution 3:[3]

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.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 parmicciano
Solution 2 eshirvana
Solution 3 MingJie-MSFT