zed/extensions
vladislav doster 3db5c398a2
docs: Fix typo in EXTRACTION.md (#55106)
Self-Review Checklist:

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

- Corrected a typo in the instructions regarding the 'pattern' format
2026-04-28 19:18:44 +00:00
..
glsl glsl: Bump to v0.2.3 (#53234) 2026-04-06 12:45:25 +00:00
html html: Bump to v0.3.1 (#51518) 2026-03-16 15:31:16 +01:00
proto proto: Bump to v0.3.2 (#53235) 2026-04-06 12:51:13 +00:00
test-extension Format Tree-sitter queries with ts_query_ls (#50138) 2026-02-27 12:49:45 +00:00
workflows extension_ci: Ensure version bump does not happen too often (#50108) 2026-02-25 17:09:07 +00:00
.gitignore Provide wasm extensions with APIs needed for using pre-installed LSP binaries (#9085) 2024-03-08 17:18:06 -05:00
EXTRACTION.md docs: Fix typo in EXTRACTION.md (#55106) 2026-04-28 19:18:44 +00:00
README.md Remove language-extension-version script (#51838) 2026-03-18 14:47:43 +00:00

Zed Extensions

This directory contains extensions for Zed that are largely maintained by the Zed team. They currently live in the Zed repository for ease of maintenance.

If you are looking for the Zed extension registry, see the zed-industries/extensions repo.

Structure

Currently, Zed includes support for a number of languages without requiring installing an extension. Those languages can be found under crates/languages/src.

Support for all other languages is done via extensions. This directory (extensions/) contains some of the officially maintained extensions. These extensions use the same zed_extension_api available to all Zed Extensions for providing language servers, tree-sitter grammars and tree-sitter queries.

You can find the other officially maintained extensions in the zed-extensions organization.

Dev Extensions

See the docs for Developing an Extension Locally for how to work with one of these extensions.