From c1f8929e43d17f2cf595de4f7cf7e66b8c9ff6f2 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 15 Dec 2023 17:28:07 +0200 Subject: [PATCH] Add new panels into zed2 --- Cargo.lock | 1 + crates/zed2/Cargo.toml | 2 +- crates/zed2/src/main.rs | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7237ab6905db5a5aadfa1c4613114c3f12ae6bca..3226037d51a40f06b24ed0ede79e2ee211c2ed43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12198,6 +12198,7 @@ dependencies = [ "journal2", "language2", "language_selector2", + "language_tools2", "lazy_static", "libc", "log", diff --git a/crates/zed2/Cargo.toml b/crates/zed2/Cargo.toml index 6646eb5ffc3b47141f1bac1df6a7c4f6658f7f8c..8cc333348462e327d8bf9eded5ef3d72de46f382 100644 --- a/crates/zed2/Cargo.toml +++ b/crates/zed2/Cargo.toml @@ -47,7 +47,7 @@ language = { package = "language2", path = "../language2" } language_selector = { package = "language_selector2", path = "../language_selector2" } lsp = { package = "lsp2", path = "../lsp2" } menu = { package = "menu2", path = "../menu2" } -# language_tools = { path = "../language_tools" } +language_tools = { package = "language_tools2", path = "../language_tools2" } node_runtime = { path = "../node_runtime" } notifications = { package = "notifications2", path = "../notifications2" } assistant = { package = "assistant2", path = "../assistant2" } diff --git a/crates/zed2/src/main.rs b/crates/zed2/src/main.rs index ca8cd7a2a2a1d608c5c0821aa748de5539c47cd7..f4d9aa2510f4739659f4749fd877d9ea8de76c98 100644 --- a/crates/zed2/src/main.rs +++ b/crates/zed2/src/main.rs @@ -217,8 +217,7 @@ fn main() { // journal2::init(app_state.clone(), cx); language_selector::init(cx); theme_selector::init(cx); - // activity_indicator::init(cx); - // language_tools::init(cx); + language_tools::init(cx); call::init(app_state.client.clone(), app_state.user_store.clone(), cx); notifications::init(app_state.client.clone(), app_state.user_store.clone(), cx); collab_ui::init(&app_state, cx);