settings: Rename 'zeta' to 'zed' (#23174)

Old:

```settings.json
{
  "features": {
    "inline_completion_provider": "zeta"
  }
}
```

New & cool:

```settings.json
{
  "features": {
    "inline_completion_provider": "zed"
  }
}
```

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2025-01-15 11:53:30 +01:00 committed by GitHub
parent 37c2ebed7e
commit ae746937af
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -201,7 +201,7 @@ impl Render for InlineCompletionButton {
);
}
InlineCompletionProvider::Zeta => {
InlineCompletionProvider::Zed => {
if !cx.has_flag::<ZetaFeatureFlag>() {
return div();
}