VSCode supports multi-root workspaces.
In the example you give in the docs, the .code-workspace file looks like this:
{
"folders": [
{
// Source code
"name": "Product",
"path": "vscode"
},
{
// Docs and release notes
"name": "Documentation",
"path": "vscode-docs"
},
{
// Yeoman extension generator
"name": "Extension generator",
"path": "vscode-generator-code"
}
]
}
Now let's say I want to open README.md from the vscode-docs folder.
I press Ctrl+P and then type doc README.md, and I get no results, even though the folder path is vscode-docs, and the folder name is Documentation.
Please make fuzzy search also search the folder path & name.