Skip to content

Commit d256261

Browse files
committed
Fix casing in setting description
1 parent fefa8ff commit d256261

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,9 @@ configurationRegistry.registerConfiguration({
161161
type: 'string',
162162
enum: ['view', 'reuseEditor', 'newEditor'],
163163
default: 'view',
164-
markdownDescription: nls.localize('search.mode', "Controls where new `Search: Find in Files` and `Find in Folder` operations occur: either in the search view, or in a search editor."),
164+
markdownDescription: nls.localize('search.mode', "Controls where new `Search: Find in Files` and `Find in Folder` operations occur: either in the Search view, or in a search editor."),
165165
enumDescriptions: [
166-
nls.localize('search.mode.view', "Search in the search view, either in the panel or side bars."),
166+
nls.localize('search.mode.view', "Search in the Search view, either in the panel or side bars."),
167167
nls.localize('search.mode.reuseEditor', "Search in an existing search editor if present, otherwise in a new search editor."),
168168
nls.localize('search.mode.newEditor', "Search in a new search editor."),
169169
]
@@ -236,7 +236,7 @@ configurationRegistry.registerConfiguration({
236236
'search.globalFindClipboard': {
237237
type: 'boolean',
238238
default: false,
239-
description: nls.localize('search.globalFindClipboard', "Controls whether the search view should read or modify the shared find clipboard on macOS."),
239+
description: nls.localize('search.globalFindClipboard', "Controls whether the Search view should read or modify the shared find clipboard on macOS."),
240240
included: platform.isMacintosh
241241
},
242242
'search.location': {
@@ -282,11 +282,11 @@ configurationRegistry.registerConfiguration({
282282
type: 'string',
283283
enum: ['auto', 'right'],
284284
enumDescriptions: [
285-
nls.localize('search.actionsPositionAuto', "Position the actionbar to the right when the search view is narrow, and immediately after the content when the search view is wide."),
285+
nls.localize('search.actionsPositionAuto', "Position the actionbar to the right when the Search view is narrow, and immediately after the content when the Search view is wide."),
286286
nls.localize('search.actionsPositionRight', "Always position the actionbar to the right."),
287287
],
288288
default: 'right',
289-
description: nls.localize('search.actionsPosition', "Controls the positioning of the actionbar on rows in the search view.")
289+
description: nls.localize('search.actionsPosition', "Controls the positioning of the actionbar on rows in the Search view.")
290290
},
291291
'search.searchOnType': {
292292
type: 'boolean',
@@ -301,7 +301,7 @@ configurationRegistry.registerConfiguration({
301301
'search.seedOnFocus': {
302302
type: 'boolean',
303303
default: false,
304-
markdownDescription: nls.localize('search.seedOnFocus', "Update the search query to the editor's selected text when focusing the search view. This happens either on click or when triggering the `workbench.views.search.focus` command.")
304+
markdownDescription: nls.localize('search.seedOnFocus', "Update the search query to the editor's selected text when focusing the Search view. This happens either on click or when triggering the `workbench.views.search.focus` command.")
305305
},
306306
'search.searchOnTypeDebouncePeriod': {
307307
type: 'number',
@@ -390,7 +390,7 @@ configurationRegistry.registerConfiguration({
390390
},
391391
'search.searchView.semanticSearchBehavior': {
392392
type: 'string',
393-
description: nls.localize('search.searchView.semanticSearchBehavior', "Controls the behavior of the semantic search results displayed in the search view."),
393+
description: nls.localize('search.searchView.semanticSearchBehavior', "Controls the behavior of the semantic search results displayed in the Search view."),
394394
enum: [SemanticSearchBehavior.Manual, SemanticSearchBehavior.RunOnEmpty, SemanticSearchBehavior.Auto],
395395
default: SemanticSearchBehavior.Manual,
396396
enumDescriptions: [

0 commit comments

Comments
 (0)