aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorRossTheRoss <mstrapp@protonmail.com>2021-03-18 12:06:42 -0500
committerRossTheRoss <mstrapp@protonmail.com>2021-03-18 12:06:42 -0500
commit6df01f9378c30f750767524c4c36f2830b69f72a (patch)
tree833efe0057cf75907551ef963693e5e68ea8faa5 /.vscode
parentrename (diff)
downloadhomework-6df01f9378c30f750767524c4c36f2830b69f72a.tar
homework-6df01f9378c30f750767524c4c36f2830b69f72a.tar.gz
homework-6df01f9378c30f750767524c4c36f2830b69f72a.tar.bz2
homework-6df01f9378c30f750767524c4c36f2830b69f72a.tar.lz
homework-6df01f9378c30f750767524c4c36f2830b69f72a.tar.xz
homework-6df01f9378c30f750767524c4c36f2830b69f72a.tar.zst
homework-6df01f9378c30f750767524c4c36f2830b69f72a.zip
fix command args
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json106
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