- Instant help with your Developer coding problems

Export VS Code extensions

Question:
How to export VS Code extensions?
Answer:
code --list-extensions > extensionList.txt
Description:

At the moment (Version 1.66) it is not possible to get or export the extensions list from VS Code GUI. To do this you have to use the command line interface. Open the terminal and type code --list-extensions to get the extensions list. You can also create a file with the list using the command: code --list-extensions > extensionList.txt

 

Share "How to export VS Code extensions?"