- Added custom codespace configuration

- Removed unnecessary extensions
- Start Hyperion in VS Code (Codespace) by default in debug mode
This commit is contained in:
Paulchen Panther
2020-11-15 13:09:31 +00:00
committed by GitHub
parent efc2046ab5
commit 9ae0f4cfc4
3 changed files with 22 additions and 4 deletions

View File

@@ -16,9 +16,7 @@
"ms-vscode.cmake-tools",
"spmeesseman.vscode-taskexplorer",
"yzhang.markdown-all-in-one",
"formulahendry.auto-rename-tag",
"CoenraadS.bracket-pair-colorizer",
"eamodio.gitlens",
"vscode-icons-team.vscode-icons",
"editorconfig.editorconfig"
]

4
.vscode/launch.json vendored
View File

@@ -9,7 +9,7 @@
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/hyperiond",
"args": [],
"args": ["-d"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
@@ -28,7 +28,7 @@
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/bin/Debug/hyperiond.exe",
"args": [],
"args": ["-d"],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],