Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

search: remove unused config settings #82019

Merged
merged 1 commit into from Oct 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -132,7 +132,7 @@ export const tocData: ITOCEntry = {
{
id: 'features/search',
label: localize('search', "Search"),
settings: ['search.*', 'searchRipgrep.*']
settings: ['search.*']
}
,
{
Expand Down
11 changes: 0 additions & 11 deletions src/vs/workbench/contrib/search/browser/search.contribution.ts
Expand Up @@ -760,17 +760,6 @@ configurationRegistry.registerConfiguration({
default: false,
description: nls.localize('search.showLineNumbers', "Controls whether to show line numbers for search results."),
},
'searchRipgrep.enable': {
type: 'boolean',
default: false,
deprecationMessage: nls.localize('search.searchRipgrepEnableDeprecated', "Deprecated. Use \"search.runInExtensionHost\" instead"),
description: nls.localize('search.searchRipgrepEnable', "Whether to run search in the extension host")
},
'search.runInExtensionHost': {
type: 'boolean',
default: false,
description: nls.localize('search.runInExtensionHost', "Whether to run search in the extension host. Requires a restart to take effect.")
},
'search.usePCRE2': {
type: 'boolean',
default: false,
Expand Down