Use "install" to refer to extension installation process (#10049)

Release Notes:

- Improved discoverability of dev extension installation action
([#10048](https://github.com/zed-industries/zed/issues/10048)).
This commit is contained in:
moshyfawn 2024-04-01 18:27:03 -04:00 committed by GitHub
parent 83ce783856
commit fbf3e1d79d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -52,5 +52,5 @@ zed::register_extension!(MyExtension);
To run your extension in Zed as you're developing it: To run your extension in Zed as you're developing it:
- Open the extensions view using the `zed: extensions` action in the command palette. - Open the extensions view using the `zed: extensions` action in the command palette.
- Click the `Add Dev Extension` button in the top right - Click the `Install Dev Extension` button in the top right
- Choose the path to your extension directory. - Choose the path to your extension directory.

View File

@ -817,7 +817,7 @@ impl Render for ExtensionsPage {
.justify_between() .justify_between()
.child(Headline::new("Extensions").size(HeadlineSize::XLarge)) .child(Headline::new("Extensions").size(HeadlineSize::XLarge))
.child( .child(
Button::new("add-dev-extension", "Add Dev Extension") Button::new("install-dev-extension", "Install Dev Extension")
.style(ButtonStyle::Filled) .style(ButtonStyle::Filled)
.size(ButtonSize::Large) .size(ButtonSize::Large)
.on_click(|_event, cx| { .on_click(|_event, cx| {