diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2025-05-11 21:16:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-11 21:16:30 +0200 |
| commit | 89f83305019a70d714af015aec734700dfee967c (patch) | |
| tree | c53bae184765f044a782c4adb515bb684d8207cf /editors | |
| parent | 9172bd42c8b0977aa62aa899a8ed09e5b822d021 (diff) | |
| parent | 7008ec535b564dcc95ef50c0591dae7fea7b998f (diff) | |
Merge pull request #629 from harold-b/hb.vscode-problem-matcher
Add vscode problem matcher for Odin
Diffstat (limited to 'editors')
| -rw-r--r-- | editors/vscode/package.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/editors/vscode/package.json b/editors/vscode/package.json index f431984..94edc88 100644 --- a/editors/vscode/package.json +++ b/editors/vscode/package.json @@ -132,6 +132,21 @@ { "language": "odin" } + ], + "problemMatchers": [ + { + "name": "odin", + "owner": "odin", + "fileLocation": ["absolute"], + "pattern": { + "regexp": "^(.+)\\(([0-9]+)\\:([0-9]+)\\) ([^:]+)(.+)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } ] }, "scripts": { |