Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 1.56 KB

README.md

File metadata and controls

64 lines (44 loc) · 1.56 KB

A list of installed VS Code Extensions

Table of Content

Description

To generate a list of the extensions

On Windows:

code --list-extensions > vscode-extensions.list

On Ubuntu:

code --list-extensions > vscode-extensions.list

To install the extensions from the file

Note: In Powershell

On Windows

Get-Content vscode-extensions.list | ForEach-Object { code --install-extension $_ }

On Ubuntu:

cat vscode-extensions.list | xargs -L 1 code --install-extension

Configurations

autoDocstring - Python Docstring Generator

  • These are configurations for the Python autoDocstring Generator extension.

  • More configurations for the docstringFormat can be found here

    • It's a custom template for the PEP257 docstring format.
  "auto-close-tag.enableAutoCloseTag": true,
  "autoDocstring.customTemplatePath": "path/to/pep257.mustache",
  "autoDocstring.docstringFormat": "pep257",
  "autoDocstring.guessTypes":true,
  "autoDocstring.includeName": false,
  "autoDocstring.startOnNewLine": true,

Author

Tafara Nyamhunga - Github / Twitter