chore: add VS Code workspace config with Peacock color
- launch.json: Python debugpy for bterminal.py - tasks.json: run and install tasks - settings.json: Peacock green workspace color, Python type checking
This commit is contained in:
parent
b659a6a6bd
commit
7d4e5a33c9
3 changed files with 73 additions and 0 deletions
22
.vscode/tasks.json
vendored
Normal file
22
.vscode/tasks.json
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "run",
|
||||
"type": "shell",
|
||||
"command": "python3 ${workspaceFolder}/bterminal.py",
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
"label": "install",
|
||||
"type": "shell",
|
||||
"command": "bash ${workspaceFolder}/install.sh",
|
||||
"group": "none",
|
||||
"problemMatcher": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue