diff options
| author | Ralf Jung <post@ralfj.de> | 2025-09-03 06:52:47 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-03 06:52:47 +0000 |
| commit | 3015ce19c7ba10586982618c2676cbd84758df91 (patch) | |
| tree | fc67da3c777f2886a4c09741c77e48dc4ad163e7 /src | |
| parent | 5f3197ffb11cc263efd31475781ef98c53750cb4 (diff) | |
| parent | 4daea276ee223c12de884cf6ca8ec323f439dbeb (diff) | |
| download | rust-3015ce19c7ba10586982618c2676cbd84758df91.tar.gz rust-3015ce19c7ba10586982618c2676cbd84758df91.zip | |
Merge pull request #4559 from nia-e/zed-config
Add Zed editor config
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/miri/CONTRIBUTING.md | 6 | ||||
| -rw-r--r-- | src/tools/miri/etc/rust_analyzer_zed.json | 41 |
2 files changed, 47 insertions, 0 deletions
diff --git a/src/tools/miri/CONTRIBUTING.md b/src/tools/miri/CONTRIBUTING.md index 7d78fdddbad..073ad267476 100644 --- a/src/tools/miri/CONTRIBUTING.md +++ b/src/tools/miri/CONTRIBUTING.md @@ -255,6 +255,12 @@ when installing the Miri toolchain. Alternatively, set the `RUSTUP_TOOLCHAIN` en [`etc/rust_analyzer_helix.toml`]: https://github.com/rust-lang/miri/blob/master/etc/rust_analyzer_helix.toml +### Zed + +Copy [`etc/rust_analyzer_zed.json`] to `.zed/settings.json` in the project root directory. + +[`etc/rust_analyzer_zed.json`]: https://github.com/rust-lang/miri/blob/master/etc/rust_analyzer_zed.json + ### Advanced configuration If you are building Miri with a locally built rustc, set diff --git a/src/tools/miri/etc/rust_analyzer_zed.json b/src/tools/miri/etc/rust_analyzer_zed.json new file mode 100644 index 00000000000..839914c8b68 --- /dev/null +++ b/src/tools/miri/etc/rust_analyzer_zed.json @@ -0,0 +1,41 @@ +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "rustc": { + "source": "discover" + }, + "linkedProjects": [ + "./Cargo.toml", + "./cargo-miri/Cargo.toml", + "./genmc-sys/Cargo.toml", + "./miri-script/Cargo.toml" + ], + "check": { + "invocationStrategy": "once", + "overrideCommand": [ + "./miri", + "clippy", // make this `check` when working with a locally built rustc + "--message-format=json" + ] + }, + "cargo": { + "extraEnv": { + "MIRI_AUTO_OPS": "no", + "MIRI_IN_RA": "1" + }, + // Contrary to what the name suggests, this also affects proc macros. + "buildScripts": { + "invocationStrategy": "once", + "overrideCommand": [ + "./miri", + "check", + "--no-default-features", + "--message-format=json" + ] + } + } + } + } + } +} |
