zed/extensions
Finn Evers eb10b8def5
Remove language-extension-version script (#51838)
This PR removes the `language-extension-version` script and cleans up
some of the related documentation around updating extensions, as this is
no longer needed and at this point fully automated.


Release Notes:

- N/A
2026-03-18 14:47:43 +00:00
..
glsl glsl: Bump to v0.2.2 (#51682) 2026-03-16 16:17:56 +00:00
html html: Bump to v0.3.1 (#51518) 2026-03-16 15:31:16 +01:00
proto Format Tree-sitter queries with ts_query_ls (#50138) 2026-02-27 12:49:45 +00:00
slash-commands-example Centralize Zed.log documentation (#40808) 2025-10-21 16:39:10 +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 Run additional checks from script/clippy if local (#29768) 2025-05-02 01:26:12 +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.