Skip to content

Commit f7da94d

Browse files
committed
Merge branch 'main' of https://github.com/microsoft/vscode-docs into merge-public
2 parents f0860a5 + dd20352 commit f7da94d

File tree

323 files changed

+2166
-660
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

323 files changed

+2166
-660
lines changed

api/advanced-topics/extension-host.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: 106AA11C-DB26-493A-9E3C-16F513B2AEC8
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: The Visual Studio Code Extension Host is responsible for managing extensions and ensuring the stability and performance of Visual Studio Code.

api/advanced-topics/remote-extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
ContentId: 5c708951-e566-42db-9d97-e9715d95cdd1
3-
DateApproved: 10/29/2024
3+
DateApproved: 12/11/2024
44

55
# Summarize the whole topic in less than 300 characters for SEO purpose
66
MetaDescription: A guide to adding Visual Studio Code Remote Development and GitHub Codespaces support to extensions

api/advanced-topics/tslint-eslint-migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
ContentId: f00c4913-58e3-4a61-aa42-e769c3430906
3-
DateApproved: 10/29/2024
3+
DateApproved: 12/11/2024
44

55
# Summarize the whole topic in less than 300 characters for SEO purpose
66
MetaDescription: A guide to migrating extension projects from the TSLint linter to ESLint.

api/advanced-topics/using-proposed-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: f4d4e9e0-8901-405c-aaf5-faa16c32588b
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: Use Visual Studio Code's Proposed API

api/extension-capabilities/common-capabilities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: 9c48dfbf-e49d-4f33-aadc-5ebf06d5dde0
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: Common capabilities that Visual Studio Code extensions (plug-ins) can take advantage of

api/extension-capabilities/extending-workbench.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: e0d5bd37-f020-4235-ad81-c977baaeb24f
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: Explain how to extend Visual Studio Code's workbench area with custom UI components

api/extension-capabilities/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: d22675fc-6609-43f2-a66b-8f2a52597195
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: Learn the details of what's possible with Visual Studio Code's rich extension (plug-in) API.

api/extension-capabilities/theming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: 37b6ae0a-d1b5-48b6-9bd4-9b50ef11d573
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: Learn how to add custom themes for colors and icons in Visual Studio Code.

api/extension-guides/chat-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: bea1d4c5-71e5-4b27-ac1e-fa9b59886dab
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: Tutorial that walks you through creating a GitHub Copilot chat participant in VS Code by using the Chat API.

api/extension-guides/chat.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# DO NOT TOUCH — Managed by doc writer
33
ContentId: ac3f00c8-78a8-408c-8af6-3e997a482972
4-
DateApproved: 10/29/2024
4+
DateApproved: 12/11/2024
55

66
# Summarize the whole topic in less than 300 characters for SEO purpose
77
MetaDescription: A guide to creating an AI extension in Visual Studio Code
@@ -288,22 +288,24 @@ The following code snippet shows how to implement participant detection at the p
288288
```json
289289
"contributes": {
290290
"chatParticipants": [
291-
"id": "chat-sample.cat",
292-
"fullName": "Cat",
293-
"name": "cat",
294-
"description": "Meow! What can I teach you?",
291+
{
292+
"id": "chat-sample.cat",
293+
"fullName": "Cat",
294+
"name": "cat",
295+
"description": "Meow! What can I teach you?",
295296

296-
"disambiguation": [
297-
{
298-
"category": "cat",
299-
"description": "The user wants to learn a specific computer science topic in an informal way.",
300-
"examples": [
301-
"Teach me C++ pointers using metaphors",
302-
"Explain to me what is a linked list in a simple way",
303-
"Can you explain to me what is a function in programming?"
304-
]
305-
}
306-
]
297+
"disambiguation": [
298+
{
299+
"category": "cat",
300+
"description": "The user wants to learn a specific computer science topic in an informal way.",
301+
"examples": [
302+
"Teach me C++ pointers using metaphors",
303+
"Explain to me what is a linked list in a simple way",
304+
"Can you explain to me what is a function in programming?"
305+
]
306+
}
307+
]
308+
}
307309
]
308310
}
309311
```
@@ -473,7 +475,7 @@ const logger = vscode.env.createTelemetryLogger({
473475
});
474476

475477
cat.onDidReceiveFeedback((feedback: vscode.ChatResultFeedback) => {
476-
// Log chat result feedback to be able to compute the success matric of the participant
478+
// Log chat result feedback to be able to compute the success metric of the participant
477479
logger.logUsage('chatResultFeedback', {
478480
kind: feedback.kind
479481
});

0 commit comments

Comments
 (0)