From e991be3ca03b8867cedc2b95f649f8e3c6d31682 Mon Sep 17 00:00:00 2001 From: Paul Wang Date: Fri, 7 Nov 2025 10:50:07 -0800 Subject: [PATCH 1/4] Update for release --- docs/copilot/reference/copilot-vscode-features.md | 2 +- docs/setup/enterprise.md | 14 ++++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/copilot/reference/copilot-vscode-features.md b/docs/copilot/reference/copilot-vscode-features.md index 21d051420d..c3cf318771 100644 --- a/docs/copilot/reference/copilot-vscode-features.md +++ b/docs/copilot/reference/copilot-vscode-features.md @@ -58,7 +58,7 @@ Start a natural language chat conversation to get help with coding tasks. For ex | Edit () | [Edit a previous chat prompt](/docs/copilot/chat/chat-checkpoints.md#edit-a-previous-chat-request) and revert changes. | | History () | Access your history of chat sessions. | | Voice () | Enter a chat prompt by using speech (voice chat). The chat response is read out aloud. | -| [KaTeX](https://katex.org) | Render mathematical equations in chat responses. Enable with `setting(chat.math.enabled)`. | +| [KaTeX](https://katex.org) | Render mathematical equations in chat responses. Enable with `setting(chat.math.enabled)`. Right-click on a math expression to copy the source expression. | > **Tips** > diff --git a/docs/setup/enterprise.md b/docs/setup/enterprise.md index d307932f22..bc1f5e5146 100644 --- a/docs/setup/enterprise.md +++ b/docs/setup/enterprise.md @@ -160,6 +160,14 @@ Starting from VS Code version 1.99, each release ships with a sample `.mobilecon > [!TIP] > To view the contents of the `.app` bundle, right-click on the application (for example, `/Applications/Visual Studio Code.app`) in Finder and select **Show Package Contents**. +### JSON policies on Linux + +Starting from VS Code version 1.106, you can also configure VS Code setting policies on Linux devices by placing a JSON policy file at `/etc/vscode/policy.json`. + +Each release includes a sample `policy.json` file under `resources/app/policies` which includes the available policies. You can find this file by either extracting the Linux packages using the appropriate tool or by downloading and extracting the `tar.gz` file from the Downloads page. + +Use a text editor to manually edit or remove policy to match your organization's requirements. + #### String policies The example below demonstrates configuration of the `AllowedExtensions` policy. The policy value starts empty in the sample file (no extensions are allowed). @@ -225,12 +233,6 @@ Follow these steps to bootstrap extensions: Users can still uninstall extensions that were preinstalled. Restarting VS Code after uninstalling an extension will not reinstall the extension. -## Frequently asked questions - -### Does VS Code support configuration profiles on Linux? - -Support for Linux is not on the roadmap. If you're interested in configuration profiles on Linux, open an issue in the VS Code [GitHub repository](https://github.com/microsoft/vscode/issues) and share details about your scenario. - ## Related resources - [Learn about security considerations of using AI in VS Code](/docs/copilot/security.md) From 5767da46cd9a5c2f8a0f4f2f8b752d4a67a8561e Mon Sep 17 00:00:00 2001 From: Paul Wang Date: Fri, 7 Nov 2025 11:04:20 -0800 Subject: [PATCH 2/4] Update --- docs/setup/enterprise.md | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/docs/setup/enterprise.md b/docs/setup/enterprise.md index bc1f5e5146..6babc3885d 100644 --- a/docs/setup/enterprise.md +++ b/docs/setup/enterprise.md @@ -140,6 +140,8 @@ VS Code currently provides policies to control the following admin-controlled fe | `CopilotReviewSelection` | Enable code review for editor selection. | `github.copilot.chat.reviewSelection.enabled` | 1.104 | | `CopilotReviewAgent` | Enable Copilot Code Review for pull requests and changed files. | `github.copilot.chat.reviewAgent.enabled` | 1.104 | | `ChatToolsTerminalEnableAutoApprove` | Enable the rule-based auto-approval for the terminal tool. | `chat.tools.terminal.autoApprove` | 1.104 | +| `McpGalleryServiceUrl` | Configure the MCP Gallery service URL to connect to | `chat.mcp.gallery.serviceUrl` | 1.101 | +| `ExtensionGalleryServiceUrl` | Configure the Marketplace service URL to connect to | `extensions.gallery.serviceUrl` | 1.99 | ### Group Policy on Windows @@ -160,14 +162,6 @@ Starting from VS Code version 1.99, each release ships with a sample `.mobilecon > [!TIP] > To view the contents of the `.app` bundle, right-click on the application (for example, `/Applications/Visual Studio Code.app`) in Finder and select **Show Package Contents**. -### JSON policies on Linux - -Starting from VS Code version 1.106, you can also configure VS Code setting policies on Linux devices by placing a JSON policy file at `/etc/vscode/policy.json`. - -Each release includes a sample `policy.json` file under `resources/app/policies` which includes the available policies. You can find this file by either extracting the Linux packages using the appropriate tool or by downloading and extracting the `tar.gz` file from the Downloads page. - -Use a text editor to manually edit or remove policy to match your organization's requirements. - #### String policies The example below demonstrates configuration of the `AllowedExtensions` policy. The policy value starts empty in the sample file (no extensions are allowed). @@ -211,6 +205,18 @@ Manually install a configuration profile by double-clicking on the `.mobileconfi For more information on configuration profiles, refer to [Apple's documentation](https://support.apple.com/guide/mac-help/configuration-profiles-standardize-settings-mh35561/mac). +### JSON policies on Linux + +Starting from VS Code version 1.106, you can also configure VS Code setting policies on Linux devices by placing a JSON policy file at `/etc/vscode/policy.json`. + +Each release includes a sample `policy.json` file under `resources/app/policies` which includes the available policies. You can find this file by either extracting it from the downloaded package or by selecting and extracting the `tar.gz` file from the Downloads page. + +Use a text editor to manually edit or remove policy to match your organization's requirements. + +> [!IMPORTANT] +> The provided `policy.json` file initializes **all** policies available in that version of VS Code. Delete any policies that are not needed. +> +> If you do not edit or remove a policy from the sample `policy.json`, that policy will be enforced with its default (restrictive) policy value. ### Additional policies From 985a167237b6faeef9f91158dd5efe9506bca732 Mon Sep 17 00:00:00 2001 From: Paul Wang Date: Fri, 7 Nov 2025 11:07:19 -0800 Subject: [PATCH 3/4] Redundant --- docs/setup/enterprise.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/setup/enterprise.md b/docs/setup/enterprise.md index 6babc3885d..3771db21b1 100644 --- a/docs/setup/enterprise.md +++ b/docs/setup/enterprise.md @@ -211,8 +211,6 @@ Starting from VS Code version 1.106, you can also configure VS Code setting poli Each release includes a sample `policy.json` file under `resources/app/policies` which includes the available policies. You can find this file by either extracting it from the downloaded package or by selecting and extracting the `tar.gz` file from the Downloads page. -Use a text editor to manually edit or remove policy to match your organization's requirements. - > [!IMPORTANT] > The provided `policy.json` file initializes **all** policies available in that version of VS Code. Delete any policies that are not needed. > From 9fadc2998d86240ba9c84ddb229cd02a4a742a0c Mon Sep 17 00:00:00 2001 From: Paul Wang Date: Fri, 7 Nov 2025 11:08:28 -0800 Subject: [PATCH 4/4] Consistency --- docs/setup/enterprise.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/setup/enterprise.md b/docs/setup/enterprise.md index 3771db21b1..2cfbd9c249 100644 --- a/docs/setup/enterprise.md +++ b/docs/setup/enterprise.md @@ -140,8 +140,8 @@ VS Code currently provides policies to control the following admin-controlled fe | `CopilotReviewSelection` | Enable code review for editor selection. | `github.copilot.chat.reviewSelection.enabled` | 1.104 | | `CopilotReviewAgent` | Enable Copilot Code Review for pull requests and changed files. | `github.copilot.chat.reviewAgent.enabled` | 1.104 | | `ChatToolsTerminalEnableAutoApprove` | Enable the rule-based auto-approval for the terminal tool. | `chat.tools.terminal.autoApprove` | 1.104 | -| `McpGalleryServiceUrl` | Configure the MCP Gallery service URL to connect to | `chat.mcp.gallery.serviceUrl` | 1.101 | -| `ExtensionGalleryServiceUrl` | Configure the Marketplace service URL to connect to | `extensions.gallery.serviceUrl` | 1.99 | +| `McpGalleryServiceUrl` | Configure the MCP Gallery service URL to connect to. | `chat.mcp.gallery.serviceUrl` | 1.101 | +| `ExtensionGalleryServiceUrl` | Configure the Marketplace service URL to connect to. | `extensions.gallery.serviceUrl` | 1.99 | ### Group Policy on Windows