diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-04-25 16:19:18 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-04-25 16:34:31 -0400 |
| commit | 7008ec535b564dcc95ef50c0591dae7fea7b998f (patch) | |
| tree | 226f768875a80f2ca0c3e214634ec044216935dd /editors | |
| parent | a0694cb331571e2cb31512af7da75756ef984ec2 (diff) | |
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": { |