From 5e0d3123e9143bb641ebb9c9295bfa13d63787df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Duarte?= Date: Mon, 9 Feb 2026 08:35:13 +0000 Subject: [PATCH] docs: Add theme ID suffix recommendation (#48679) Added note about suffixing theme IDs with '-theme' for clarity. As discussed in https://github.com/zed-industries/extensions/pull/4693#pullrequestreview-3751636461 - [ ] ~Tests or screenshots needed?~ - [x] Code Reviewed - [ ] ~Manual QA~ Release Notes: - Clarified theme ID suffixing in extension docs --------- Co-authored-by: Finn Evers --- docs/src/extensions/developing-extensions.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/extensions/developing-extensions.md b/docs/src/extensions/developing-extensions.md index dc3643d9b9ab6a5210adfb787bcd15e4d7bdb092..bf40312a8cbe39fb837fac82764f50d14dc15b6e 100644 --- a/docs/src/extensions/developing-extensions.md +++ b/docs/src/extensions/developing-extensions.md @@ -40,6 +40,8 @@ description = "My cool extension" repository = "https://github.com/your-name/my-zed-extension" ``` +> Note: If you are working on a theme extension with the intend of publishing it later, is is recommended that you suffix your theme's extension ID with `-theme`. This might otherwise be raised during the process of [releasing your extension](#publishing-your-extension). + In addition to this, there are several other optional files and directories that can be used to add functionality to a Zed extension. An example directory structure of an extension that provides all capabilities is as follows: ```