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 f40051b commit 83d2f06Copy full SHA for 83d2f06
src/vs/workbench/contrib/search/browser/searchView.ts
@@ -1125,7 +1125,7 @@ export class SearchView extends ViewPane {
1125
1126
private updateTextFromSelection({ allowUnselectedWord = true, allowSearchOnType = true }, editor?: IEditor): boolean {
1127
const seedSearchStringFromSelection = this.configurationService.getValue<IEditorOptions>('editor').find!.seedSearchStringFromSelection;
1128
- if (!seedSearchStringFromSelection) {
+ if (!seedSearchStringFromSelection || seedSearchStringFromSelection === 'never') {
1129
return false;
1130
}
1131
0 commit comments