diff options
author | Matt Strapp <strap012@umn.edu> | 2020-11-02 08:00:51 -0600 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-11-02 08:00:51 -0600 |
commit | 0a8657ad68085ed906b916f0c937f0f1e32605a3 (patch) | |
tree | 06e54d6150ee262684d9ef5603f786d18eca6c17 /P2 | |
parent | get rid of whitespace (diff) | |
download | csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.tar csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.tar.gz csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.tar.bz2 csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.tar.lz csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.tar.xz csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.tar.zst csci4061-0a8657ad68085ed906b916f0c937f0f1e32605a3.zip |
Try to make debugging less awful
Diffstat (limited to 'P2')
-rw-r--r-- | P2/.vscode/launch.json | 8 | ||||
-rw-r--r-- | P2/.vscode/tasks.json | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/P2/.vscode/launch.json b/P2/.vscode/launch.json index ba82be7..b2bbdc0 100644 --- a/P2/.vscode/launch.json +++ b/P2/.vscode/launch.json @@ -11,6 +11,7 @@ "program": "${workspaceFolder}/mapreduce", "args": ["5", "2", "test/T1/F1.txt"], "stopAtEntry": false, + "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, @@ -22,6 +23,13 @@ "ignoreFailures": true }, ], + // "customLaunchSetupCommands": [ + // { + // "description": "PLEASE WORK", + // "text": "set detach-on-fork off", + // "ignoreFailures": false + // } + //], "preLaunchTask": "Make", }, ] diff --git a/P2/.vscode/tasks.json b/P2/.vscode/tasks.json index 2ebd385..9080b5b 100644 --- a/P2/.vscode/tasks.json +++ b/P2/.vscode/tasks.json @@ -11,6 +11,10 @@ "kind": "build", "isDefault": true }, + "presentation": { + "reveal": "silent", + "clear": true + } }, ] |