Rename remaining mentions of "inline completion" to "edit prediction" (#35512)
Release Notes: - N/A
This commit is contained in:
parent
85885723a9
commit
65018c28c0
43 changed files with 480 additions and 498 deletions
|
@ -51,9 +51,9 @@ use workspace::{
|
|||
};
|
||||
use zed::{
|
||||
OpenListener, OpenRequest, RawOpenRequest, app_menus, build_window_options,
|
||||
derive_paths_with_position, handle_cli_connection, handle_keymap_file_changes,
|
||||
handle_settings_changed, handle_settings_file_changes, initialize_workspace,
|
||||
inline_completion_registry, open_paths_with_positions,
|
||||
derive_paths_with_position, edit_prediction_registry, handle_cli_connection,
|
||||
handle_keymap_file_changes, handle_settings_changed, handle_settings_file_changes,
|
||||
initialize_workspace, open_paths_with_positions,
|
||||
};
|
||||
|
||||
use crate::zed::OpenRequestKind;
|
||||
|
@ -559,11 +559,7 @@ pub fn main() {
|
|||
web_search::init(cx);
|
||||
web_search_providers::init(app_state.client.clone(), cx);
|
||||
snippet_provider::init(cx);
|
||||
inline_completion_registry::init(
|
||||
app_state.client.clone(),
|
||||
app_state.user_store.clone(),
|
||||
cx,
|
||||
);
|
||||
edit_prediction_registry::init(app_state.client.clone(), app_state.user_store.clone(), cx);
|
||||
let prompt_builder = PromptBuilder::load(app_state.fs.clone(), stdout_is_a_pty(), cx);
|
||||
agent_ui::init(
|
||||
app_state.fs.clone(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue