Merge pull request #18880 from PrototypeNM1/extra-includes

Add config setting which allows adding additional include paths to the VFS.
This commit is contained in:
Lukas Wirth 2025-01-09 10:24:51 +00:00 committed by GitHub
commit 2e234e3d1b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 67 additions and 3 deletions

View file

@ -2721,6 +2721,19 @@
}
}
},
{
"title": "vfs",
"properties": {
"rust-analyzer.vfs.extraIncludes": {
"markdownDescription": "Additional paths to include in the VFS. Generally for code that is\ngenerated or otherwise managed by a build system outside of Cargo,\nthough Cargo might be the eventual consumer.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
}
}
},
{
"title": "workspace",
"properties": {