Skip to content

Commit 5437499

Browse files
authored
fix: include editor symbol picks unless symbols are explicitly disabled (#216531)
1 parent b555511 commit 5437499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/search/browser/anythingQuickAccess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ export class AnythingQuickAccessProvider extends PickerQuickAccessProvider<IAnyt
325325
// Return early if we have editor symbol picks. We support this by:
326326
// - having a previously active global pick (e.g. a file)
327327
// - the user typing `@` to start the local symbol query
328-
if (options.enableEditorSymbolSearch && options.includeSymbols) {
328+
if (options.enableEditorSymbolSearch && options.includeSymbols !== false) {
329329
const editorSymbolPicks = this.getEditorSymbolPicks(query, disposables, token);
330330
if (editorSymbolPicks) {
331331
return editorSymbolPicks;

0 commit comments

Comments
 (0)