mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 05:53:45 +00:00
VSCode rust-panic problem matcher
This commit is contained in:
parent
8c3e28e3e2
commit
7251b86cb4
1 changed files with 11 additions and 8 deletions
|
@ -1689,14 +1689,17 @@
|
||||||
{
|
{
|
||||||
"name": "rust-panic",
|
"name": "rust-panic",
|
||||||
"patterns": [
|
"patterns": [
|
||||||
{
|
{
|
||||||
"regexp": "^thread '.*' panicked at '(.*)', (.*):(\\d*):(\\d*)$",
|
"regexp": "^thread '.*' panicked at (.*):(\\d*):(\\d*):$",
|
||||||
"message": 1,
|
"file": 1,
|
||||||
"file": 2,
|
"line": 2,
|
||||||
"line": 3,
|
"column": 3
|
||||||
"column": 4
|
},
|
||||||
}
|
{
|
||||||
]
|
"regexp": "(.*)",
|
||||||
|
"message": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"languages": [
|
"languages": [
|
||||||
|
|
Loading…
Reference in a new issue