From 177b2d5e9ea18674ceb09ef1544e656efda540f8 Mon Sep 17 00:00:00 2001 From: Charles Stevano <256171067+charlestevano@users.noreply.github.com> Date: Thu, 7 May 2026 00:53:29 +0700 Subject: [PATCH] docs: Add Windows command to grab extensions list (#55836) Currently, there is no method provided to grab installed extensions on Windows in Auto install extensions page. ```pwsh Get-ChildItem "$env:LOCALAPPDATA\Zed\extensions\installed" -Name ``` will return extension list in a simple format that look like this: {32ADE0F7-8EAF-4893-8E94-51DDFF6FF169} - [x] I've reviewed my own diff for quality, security, and reliability - [x] Unsafe blocks (if any) have justifying comments - [x] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [x] Tests cover the new/changed behavior - [x] Performance impact has been considered and is acceptable Release Notes: - N/A --- docs/src/reference/all-settings.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/src/reference/all-settings.md b/docs/src/reference/all-settings.md index bc20f1cf57ae44645cf4e2ce422bbf2a32eebf08..907676c77c896a9472cb026bf4b29e1e1ddf8d69 100644 --- a/docs/src/reference/all-settings.md +++ b/docs/src/reference/all-settings.md @@ -174,6 +174,12 @@ On Linux: ls ~/.local/share/zed/extensions/installed ``` +On Windows: + +```pwsh +Get-ChildItem "$env:LOCALAPPDATA\Zed\extensions\installed" -Name +``` + Define extensions which should be installed (`true`) or never installed (`false`). ```json [settings]