Skip to content

Commit b824060

Browse files
authored
Merge pull request microsoft#261535 from mjbvz/fiscal-loon
Use setting links in a few more setting descriptions
2 parents bc97c60 + 3c0d4f0 commit b824060

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/vs/editor/common/config/editorConfigurationSchema.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const editorConfiguration: IConfigurationNode = {
114114
'editor.experimental.treeSitterTelemetry': {
115115
type: 'boolean',
116116
default: false,
117-
markdownDescription: nls.localize('editor.experimental.treeSitterTelemetry', "Controls whether tree sitter parsing should be turned on and telemetry collected. Setting `editor.experimental.preferTreeSitter` for specific languages will take precedence."),
117+
markdownDescription: nls.localize('editor.experimental.treeSitterTelemetry', "Controls whether tree sitter parsing should be turned on and telemetry collected. Setting `#editor.experimental.preferTreeSitter#` for specific languages will take precedence."),
118118
tags: ['experimental'],
119119
experiment: {
120120
mode: 'auto'
@@ -123,7 +123,7 @@ const editorConfiguration: IConfigurationNode = {
123123
'editor.experimental.preferTreeSitter.css': {
124124
type: 'boolean',
125125
default: false,
126-
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.css', "Controls whether tree sitter parsing should be turned on for css. This will take precedence over `editor.experimental.treeSitterTelemetry` for css."),
126+
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.css', "Controls whether tree sitter parsing should be turned on for css. This will take precedence over `#editor.experimental.treeSitterTelemetry#` for css."),
127127
tags: ['experimental'],
128128
experiment: {
129129
mode: 'auto'
@@ -132,7 +132,7 @@ const editorConfiguration: IConfigurationNode = {
132132
'editor.experimental.preferTreeSitter.typescript': {
133133
type: 'boolean',
134134
default: false,
135-
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.typescript', "Controls whether tree sitter parsing should be turned on for typescript. This will take precedence over `editor.experimental.treeSitterTelemetry` for typescript."),
135+
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.typescript', "Controls whether tree sitter parsing should be turned on for typescript. This will take precedence over `#editor.experimental.treeSitterTelemetry#` for typescript."),
136136
tags: ['experimental'],
137137
experiment: {
138138
mode: 'auto'
@@ -141,7 +141,7 @@ const editorConfiguration: IConfigurationNode = {
141141
'editor.experimental.preferTreeSitter.ini': {
142142
type: 'boolean',
143143
default: false,
144-
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.ini', "Controls whether tree sitter parsing should be turned on for ini. This will take precedence over `editor.experimental.treeSitterTelemetry` for ini."),
144+
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.ini', "Controls whether tree sitter parsing should be turned on for ini. This will take precedence over `#editor.experimental.treeSitterTelemetry#` for ini."),
145145
tags: ['experimental'],
146146
experiment: {
147147
mode: 'auto'
@@ -150,7 +150,7 @@ const editorConfiguration: IConfigurationNode = {
150150
'editor.experimental.preferTreeSitter.regex': {
151151
type: 'boolean',
152152
default: false,
153-
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.regex', "Controls whether tree sitter parsing should be turned on for regex. This will take precedence over `editor.experimental.treeSitterTelemetry` for regex."),
153+
markdownDescription: nls.localize('editor.experimental.preferTreeSitter.regex', "Controls whether tree sitter parsing should be turned on for regex. This will take precedence over `#editor.experimental.treeSitterTelemetry#` for regex."),
154154
tags: ['experimental'],
155155
experiment: {
156156
mode: 'auto'

src/vs/editor/common/config/editorOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6361,7 +6361,7 @@ export const EditorOptions = {
63616361
readOnlyMessage: register(new ReadonlyMessage()),
63626362
renameOnType: register(new EditorBooleanOption(
63636363
EditorOption.renameOnType, 'renameOnType', false,
6364-
{ description: nls.localize('renameOnType', "Controls whether the editor auto renames on type."), markdownDeprecationMessage: nls.localize('renameOnTypeDeprecate', "Deprecated, use `editor.linkedEditing` instead.") }
6364+
{ description: nls.localize('renameOnType', "Controls whether the editor auto renames on type."), markdownDeprecationMessage: nls.localize('renameOnTypeDeprecate', "Deprecated, use `#editor.linkedEditing#` instead.") }
63656365
)),
63666366
renderControlCharacters: register(new EditorBooleanOption(
63676367
EditorOption.renderControlCharacters, 'renderControlCharacters', true,

src/vs/workbench/contrib/notebook/browser/contrib/outline/notebookOutline.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -875,7 +875,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration).regis
875875
[NotebookSetting.outlineShowCodeCellSymbols]: {
876876
type: 'boolean',
877877
default: true,
878-
markdownDescription: localize('outline.showCodeCellSymbols', "When enabled, notebook outline shows code cell symbols. Relies on `notebook.outline.showCodeCells` being enabled.")
878+
markdownDescription: localize('outline.showCodeCellSymbols', "When enabled, notebook outline shows code cell symbols. Relies on `#notebook.outline.showCodeCells#` being enabled.")
879879
},
880880
[NotebookSetting.breadcrumbsShowCodeCells]: {
881881
type: 'boolean',

0 commit comments

Comments
 (0)