Places to Find Extensoins
Visual Studio Code Marketplace and Open VSX Registry are 2 places to find VSCode compatible extensions.
Install VSCode Extensions from Command-line
https://stackoverflow.com/questions/34286515/how-to-install-visual-studio-code-extensions-from-command-line/34339780#34339780
Install Code-Server Extensions from Command-line
If you install extension in Dockerfile using root
,
the extensions are installed into /root/.local/share/code-server/extensions
.
You change the the permissions of /root
and all its subcontents to 777
(using the command chmod -R 777 /root
)
so that other users can use the installed extensions.
code-server --install-extension ms-python.python
code-server --install-extension njpwerner.autodocstring
You can install a specific version of an extension using @
.
code-server --install-extension ms-python.python@2020.5.86806 \
https://github.com/cdr/code-server/issues/171
Generally Useful Extensions
Useful Extensions for Python
-
Python Docstring Generator Thhe sphinx style is recommended.
Useful Extensions for SQL
Useful Extensions for Android Development
References
- https://open-vsx.org/