Skip to content

Commit d3b60a2

Browse files
author
Greg Van Liew
authored
Settings description typos (microsoft#96641)
1 parent 222dfa1 commit d3b60a2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ import { workbenchConfigurationNodeBase } from 'vs/workbench/common/configuratio
103103
},
104104
'workbench.editor.showIcons': {
105105
'type': 'boolean',
106-
'description': nls.localize('showIcons', "Controls whether opened editors should show with an icon or not. This requires an file icon theme to be enabled as well."),
106+
'description': nls.localize('showIcons', "Controls whether opened editors should show with an icon or not. This requires a file icon theme to be enabled as well."),
107107
'default': true
108108
},
109109
'workbench.editor.enablePreview': {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ configurationRegistry.registerConfiguration({
204204
'properties': {
205205
[FILES_EXCLUDE_CONFIG]: {
206206
'type': 'object',
207-
'markdownDescription': nls.localize('exclude', "Configure glob patterns for excluding files and folders. For example, the files explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search specific excludes. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
207+
'markdownDescription': nls.localize('exclude', "Configure glob patterns for excluding files and folders. For example, the file Explorer decides which files and folders to show or hide based on this setting. Refer to the `#search.exclude#` setting to define search specific excludes. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options)."),
208208
'default': { '**/.git': true, '**/.svn': true, '**/.hg': true, '**/CVS': true, '**/.DS_Store': true },
209209
'scope': ConfigurationScope.RESOURCE,
210210
'additionalProperties': {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,7 @@ configurationRegistry.registerConfiguration({
808808
'search.seedOnFocus': {
809809
type: 'boolean',
810810
default: false,
811-
description: nls.localize('search.seedOnFocus', "Update workspace seach 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.")
811+
description: nls.localize('search.seedOnFocus', "Update workspace 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.")
812812
},
813813
'search.searchOnTypeDebouncePeriod': {
814814
type: 'number',

0 commit comments

Comments
 (0)