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:
parent
37c2ebed7e
commit
ae746937af
3 changed files with 3 additions and 3 deletions
|
@ -201,7 +201,7 @@ impl Render for InlineCompletionButton {
|
|||
);
|
||||
}
|
||||
|
||||
InlineCompletionProvider::Zeta => {
|
||||
InlineCompletionProvider::Zed => {
|
||||
if !cx.has_flag::<ZetaFeatureFlag>() {
|
||||
return div();
|
||||
}
|
||||
|
|
|
@ -203,7 +203,7 @@ pub enum InlineCompletionProvider {
|
|||
#[default]
|
||||
Copilot,
|
||||
Supermaven,
|
||||
Zeta,
|
||||
Zed,
|
||||
}
|
||||
|
||||
/// The settings for inline completions, such as [GitHub Copilot](https://github.com/features/copilot)
|
||||
|
|
|
@ -164,7 +164,7 @@ fn assign_inline_completion_provider(
|
|||
editor.set_inline_completion_provider(Some(provider), cx);
|
||||
}
|
||||
}
|
||||
language::language_settings::InlineCompletionProvider::Zeta => {
|
||||
language::language_settings::InlineCompletionProvider::Zed => {
|
||||
if cx.has_flag::<ZetaFeatureFlag>()
|
||||
|| (cfg!(debug_assertions) && client.status().borrow().is_connected())
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue