- git
- python
- code (cli of VSCode)
All reachable from the PATH of the system
- Using the portable version of VS Code, there is a
/data/
folder in the software's directory
{ | |
"terminal.integrated.defaultProfile.windows": "IPython", | |
"terminal.integrated.profiles.windows": { | |
"IPython":{ | |
"path": "ipython", | |
"overrideName": true, | |
"icon": "debug-start" | |
}, | |
}, | |
"macros.list": { |
from __future__ import annotations | |
ignoreextensions = [] # cSpell:disable-line | |
print('-'*60) | |
import os | |
import subprocess | |
from dataclasses import dataclass | |
from packaging.version import parse as version, Version | |
from typing import Union |
All reachable from the PATH of the system
/data/
folder in the software's directory{ | |
"vscodeGitCommit.template": [ "{type}: {message}" ], | |
"vscodeGitCommit.variables": { | |
"type": [ | |
{ | |
"label": "🚧 wip", | |
"detail": "Work in progress." | |
}, | |
{ | |
"label": "__🔒 private", |