Skip to content

Commit 7251b86

Browse files
authored
VSCode rust-panic problem matcher
1 parent 8c3e28e commit 7251b86

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

editors/code/package.json

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1689,14 +1689,17 @@
16891689
{
16901690
"name": "rust-panic",
16911691
"patterns": [
1692-
{
1693-
"regexp": "^thread '.*' panicked at '(.*)', (.*):(\\d*):(\\d*)$",
1694-
"message": 1,
1695-
"file": 2,
1696-
"line": 3,
1697-
"column": 4
1698-
}
1699-
]
1692+
{
1693+
"regexp": "^thread '.*' panicked at (.*):(\\d*):(\\d*):$",
1694+
"file": 1,
1695+
"line": 2,
1696+
"column": 3
1697+
},
1698+
{
1699+
"regexp": "(.*)",
1700+
"message": 1
1701+
}
1702+
]
17001703
}
17011704
],
17021705
"languages": [

0 commit comments

Comments
 (0)