Last active
          July 7, 2023 22:29 
        
      - 
      
 - 
        
Save Lerg/ae677d8596b52f9d4dcb0e8a2546adce to your computer and use it in GitHub Desktop.  
Revisions
- 
        
Lerg revised this gist
Jul 4, 2023 . No changes.There are no files selected for viewing
 - 
        
Lerg revised this gist
Jul 4, 2023 . 1 changed file with 56 additions and 12 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -12,19 +12,63 @@ "clear": true, "showReuseMessage": false }, "problemMatcher": [ { "severity": "error", "fileLocation": "absolute", "pattern": [ { "regexp": "^(.*):(\\d+),(\\d+).*Error: (.*)$", "file": 1, "line": 2, "column": 3, "message": 4 } ], "owner": "jai" }, { "severity": "warning", "fileLocation": "absolute", "pattern": [ { "regexp": "^(.*):(\\d+),(\\d+).*Warning: (.*)$", "file": 1, "line": 2, "column": 3, "message": 4 } ], "owner": "jai" }, { "severity": "info", "fileLocation": "absolute", "pattern": [ { "regexp": "^(.*):(\\d+),(\\d+).*Info: (.*)$", "file": 1, "line": 2, "column": 3, "message": 4 } ], "owner": "jai" }, { "severity": "info", "fileLocation": "absolute", "pattern": [ { "regexp": "^(.*)\\((.*):(\\d+)\\)$", "file": 2, "line": 3, "message": 1, } ], "owner": "jai" } ] } ] }  - 
        
Lerg revised this gist
Jul 3, 2023 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ { "type": "shell", "label": "Jai: Build & Run", "command": "jai -quiet ${file} && ${fileDirname}${pathSeparator}${fileBasenameNoExtension}", "group": "build", "presentation": { "revealProblems": "onProblem",  - 
        
Lerg created this gist
Jul 3, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ { "version": "2.0.0", "tasks": [ { "type": "shell", "label": "Jai: Build & Run", "command": "jai -quiet ${file} && ${fileDirname}/${fileBasenameNoExtension}", "group": "build", "presentation": { "revealProblems": "onProblem", "reveal": "always", "clear": true, "showReuseMessage": false }, "problemMatcher": { "owner": "jai", "fileLocation": ["absolute"], "pattern": { "regexp": "^([^:]*):(\\d+),(\\d+):\\s+(Warning|Error):\\s+(.*)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5, "code": 6 } } } ] }