Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/copilot/reference/copilot-vscode-features.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Start a natural language chat conversation to get help with coding tasks. For ex
| Edit (<i class="codicon codicon-pencil"></i>) | [Edit a previous chat prompt](/docs/copilot/chat/chat-checkpoints.md#edit-a-previous-chat-request) and revert changes. |
| History (<i class="codicon codicon-history"></i>) | Access your history of chat sessions. |
| Voice (<i class="codicon codicon-mic"></i>) | 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**
>
Expand Down
18 changes: 12 additions & 6 deletions docs/setup/enterprise.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -203,6 +205,16 @@ 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.

> [!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

Expand All @@ -225,12 +237,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)