mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 19:18:59 +01:00
Enable JS/TS workspace symbol search for all projects
Fixes #11026 Adds a new `typescript.workspaceSymbols.scope` setting that enables searching all known projects when using TS 3.9+
This commit is contained in:
@@ -842,6 +842,20 @@
|
||||
"description": "%configuration.tsserver.watchOptions.synchronousWatchDirectory%"
|
||||
}
|
||||
}
|
||||
},
|
||||
"typescript.workspaceSymbols.scope": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"allOpenProjects",
|
||||
"currentProject"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"%typescript.workspaceSymbols.scope.allOpenProjects%",
|
||||
"%typescript.workspaceSymbols.scope.currentProject%"
|
||||
],
|
||||
"default": "allOpenProjects",
|
||||
"markdownDescription": "%typescript.workspaceSymbols.scope%",
|
||||
"scope": "window"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user