diff --git a/.vscode/settings.json b/.vscode/settings.json index 02f06b3..33c8d57 100755 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -14,5 +14,5 @@ "git.detectSubmodulesLimit": 0, "git.ignoreSubmodules": true, - "debug.onTaskErrors": "abort", + "debug.onTaskErrors": "showErrors", } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c94af69..b3326fe 100755 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,6 +1,25 @@ { "version": "2.0.0", + "problemMatcher": { + "source": "zig", + "owner": "cpptools", + + "fileLocation": [ + "autoDetect", + "${cwd}", + ], + + "pattern": { + "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5, + } + }, + "tasks": [ { "label": "Build Debug", @@ -21,25 +40,6 @@ "clear": true, "revealProblems": "onProblem", }, - - "problemMatcher": { - "source": "zig", - "owner": "cpptools", - - "fileLocation": [ - "autoDetect", - "${cwd}", - ], - - "pattern": { - "regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5, - } - } }, { "label": "Build Test",