Add config setting which allows adding additional include paths to the VFS.

This commit is contained in:
Nicholas Rishel 2025-01-07 18:40:46 -08:00
parent 91fc0a239a
commit 1f9686993a
7 changed files with 67 additions and 3 deletions

View file

@ -2718,6 +2718,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": {