diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index c6946c5..d875b0d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,54 +1,54 @@ -{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
-
- {
- "command": "npm start",
- "name": "Node Start (npm)",
- "request": "launch",
- "type": "node-terminal",
- "cwd": "${fileDirname}"
- },
-
- {
- "type": "java",
- "name": "Java with Argument Prompt",
- "request": "launch",
- "mainClass": "",
- "args": "${command:SpecifyProgramArgs}",
- "cwd": "${fileDirname}"
- },
- {
- "name": "Python",
- "type": "python",
- "request": "launch",
- "args": ["${command:SpecifyProgramArgs}"],
- "program": "${file}",
- "console": "integratedTerminal",
- "cwd": "${fileDirname}",
- },
- {
- "name": "C/C++",
- "type": "cppdbg",
- "request": "launch",
- "preLaunchTask": "Build c++",
- "program": "${workspaceFolder}/DEBUG_C",
- "args": ["${command:SpecifyProgramArgs}",],
- "stopAtEntry": false,
- "cwd": "${fileDirname}",
- "environment": [],
- "externalConsole": false,
- "MIMode": "gdb",
- "setupCommands": [
- {
- "description": "Enable pretty-printing for gdb",
- "text": "-enable-pretty-printing",
- "ignoreFailures": true
- }
- ]
- }
- ]
+{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "command": "npm start", + "name": "Node Start (npm)", + "request": "launch", + "type": "node-terminal", + "cwd": "${fileDirname}" + }, + + { + "type": "java", + "name": "Java with Argument Prompt", + "request": "launch", + "mainClass": "", + "args": "${command:SpecifyProgramArgs}", + "cwd": "${fileDirname}" + }, + { + "name": "Python", + "type": "python", + "request": "launch", + "args": [], + "program": "${file}", + "console": "integratedTerminal", + "cwd": "${fileDirname}", + }, + { + "name": "C/C++", + "type": "cppdbg", + "request": "launch", + "preLaunchTask": "Build c++", + "program": "${workspaceFolder}/DEBUG_C", + "args": [], + "stopAtEntry": false, + "cwd": "${fileDirname}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] + } + ] }
\ No newline at end of file |