From 57509fb1f3a291fb2a4e0369087ffa56dd6a2d66 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 18 Mar 2021 10:09:53 -0500 Subject: rename --- .vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index bb11cc0..c6946c5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,7 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { "command": "npm start", "name": "Node Start (npm)", @@ -14,7 +15,7 @@ { "type": "java", - "name": "Debug (Launch) with Arguments Prompt", + "name": "Java with Argument Prompt", "request": "launch", "mainClass": "", "args": "${command:SpecifyProgramArgs}", @@ -24,6 +25,7 @@ "name": "Python", "type": "python", "request": "launch", + "args": ["${command:SpecifyProgramArgs}"], "program": "${file}", "console": "integratedTerminal", "cwd": "${fileDirname}", @@ -34,7 +36,7 @@ "request": "launch", "preLaunchTask": "Build c++", "program": "${workspaceFolder}/DEBUG_C", - "args": [], + "args": ["${command:SpecifyProgramArgs}",], "stopAtEntry": false, "cwd": "${fileDirname}", "environment": [], -- cgit v1.2.3