From c9bee9f81f4254441583a426c7b8c7d3fb44e2ec Mon Sep 17 00:00:00 2001 From: Chris Boette Date: Sat, 5 Oct 2024 12:26:28 -0400 Subject: [PATCH] docs: Note the need for Rust when developing extensions (#18753) --- 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 503d253fc33bb39d83ffcf3046e8d313bad0abd5..1ab1676e36fb699fa5df7f819c7244169731f923 100644 --- a/docs/src/extensions/developing-extensions.md +++ b/docs/src/extensions/developing-extensions.md @@ -76,6 +76,8 @@ zed::register_extension!(MyExtension); ## Developing an Extension Locally +Before starting to develop an extension for Zed, be sure to [install Rust](https://www.rust-lang.org/tools/install). + When developing an extension, you can use it in Zed without needing to publish it by installing it as a _dev extension_. From the extensions page, click the `Install Dev Extension` button and select the directory containing your extension.