1
Fork 0

Compare commits

...

2 Commits

Author SHA1 Message Date
Bauke 75617b5fd3
Write final newline. 2022-10-03 00:02:42 +02:00
Bauke 20df7b6448
Add codium-extensions.txt. 2022-10-03 00:02:25 +02:00
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,18 @@
brunnerh.insert-unicode
foxundermoon.shell-format
Holllo.love
matthewpi.caddyfile-support
ms-python.python
ms-toolsai.jupyter
ms-toolsai.jupyter-keymap
ms-toolsai.jupyter-renderers
redhat.vscode-xml
redhat.vscode-yaml
ritwickdey.LiveServer
rust-lang.rust-analyzer
serayuzgur.crates
shd101wyy.markdown-preview-enhanced
stylelint.vscode-stylelint
tamasfe.even-better-toml
usernamehw.errorlens
vscode-icons-team.vscode-icons

View File

@ -36,6 +36,7 @@ def main() -> None:
with open(args.file, "w") as file:
extensions = get_installed_extensions()
file.writelines("\n".join(extensions))
file.write("\n")
print(f"Wrote {len(extensions)} extensions to {args.file}")