We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b555511 commit 5437499Copy full SHA for 5437499
src/vs/workbench/contrib/search/browser/anythingQuickAccess.ts
@@ -325,7 +325,7 @@ export class AnythingQuickAccessProvider extends PickerQuickAccessProvider<IAnyt
325
// Return early if we have editor symbol picks. We support this by:
326
// - having a previously active global pick (e.g. a file)
327
// - the user typing `@` to start the local symbol query
328
- if (options.enableEditorSymbolSearch && options.includeSymbols) {
+ if (options.enableEditorSymbolSearch && options.includeSymbols !== false) {
329
const editorSymbolPicks = this.getEditorSymbolPicks(query, disposables, token);
330
if (editorSymbolPicks) {
331
return editorSymbolPicks;
0 commit comments