We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c3e28e commit 7251b86Copy full SHA for 7251b86
editors/code/package.json
@@ -1689,14 +1689,17 @@
1689
{
1690
"name": "rust-panic",
1691
"patterns": [
1692
- {
1693
- "regexp": "^thread '.*' panicked at '(.*)', (.*):(\\d*):(\\d*)$",
1694
- "message": 1,
1695
- "file": 2,
1696
- "line": 3,
1697
- "column": 4
1698
- }
1699
- ]
+ {
+ "regexp": "^thread '.*' panicked at (.*):(\\d*):(\\d*):$",
+ "file": 1,
+ "line": 2,
+ "column": 3
+ },
+ "regexp": "(.*)",
1700
+ "message": 1
1701
+ }
1702
+ ]
1703
}
1704
],
1705
"languages": [
0 commit comments