diff options
| author | bors <bors@rust-lang.org> | 2023-07-03 02:40:35 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-07-03 02:40:35 +0000 |
| commit | e17559598596bc91fed7854dbeaebdf7fddd566a (patch) | |
| tree | 272976dd42e97f7f47335e35e7beefa98fc05bb6 /editors/code/package.json | |
| parent | ff485b63bfd9a44ab2a0dbe88dcf58b79496f1ac (diff) | |
| parent | 832a64e290ce97e6ae9fce3743dc2f38c4088ccd (diff) | |
| download | rust-e17559598596bc91fed7854dbeaebdf7fddd566a.tar.gz rust-e17559598596bc91fed7854dbeaebdf7fddd566a.zip | |
Auto merge of #15186 - matklad:panic, r=HKalbasi
feat: don't add panics to error jump list by default
To re-enable this, use
"rust-analyzer.runnables.problemMatcher": [
"$rustc",
"$rust-panic"
],
setting.
closes: #14977
Diffstat (limited to 'editors/code/package.json')
| -rw-r--r-- | editors/code/package.json | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json index fe060ce698b..1a1d76c6991 100644 --- a/editors/code/package.json +++ b/editors/code/package.json @@ -339,6 +339,16 @@ "default": null, "markdownDescription": "Environment variables passed to the runnable launched using `Test` or `Debug` lens or `rust-analyzer.run` command." }, + "rust-analyzer.runnables.problemMatcher": { + "type": "array", + "items": { + "type": "string" + }, + "default": [ + "$rustc" + ], + "markdownDescription": "Problem matchers to use for `rust-analyzer.run` command, eg `[\"$rustc\", \"$rust-panic\"]`." + }, "rust-analyzer.server.path": { "type": [ "null", |
