Listing VS Code Extensions

06/06/2024
development tools vs code til extensions

To create a list of your installed VS Code extensions, you can use the following PowerShell command:

code --list-extensions > C:\Temp\VSCodeExtensions.txt

# To create a list of extensions to install:
code --list-extensions | % { "code --install-extension $_" } > C:\Temp\VSCodeExtensions.txt

Alternatively, you can use the Settings Sync extension to export your VS Code extensions and configuration.

VS Code Extensions for Python

18/06/2024
development tools vs code python

Generating and using the Python requirements.txt file

15/05/2024
learning python dependencies til

Today I Learnt

01/05/2024
learning python php oracle til