How to export Visual Studio Code Plugins list
You may have a situation where you need to export your config to another machine, or you may want to share your visual studio code plugins list with another developer. Luckily, there is a nice way of doing this through the command line.
Machine A:
In VSCode Powershell terminal :
code βlist-extensions > extensions.list
Machine B:
Copy extension.list to the machine B
In VSCode Powershell terminal :
cat extensions.list | % { code βinstall-extension $_} |
Many thanks to @milanio on StackOverflow for this great solution. https://stackoverflow.com/a/49936683/1007680
Share your thoughts on: 'How to export Visual Studio Code Plugins list':
π Looking for more content?
There's plenty more content to explore: