Skip to content

Commit c297647

Browse files
committed
Fix headless
1 parent bfcb363 commit c297647

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

crates/remote_server/src/headless_project.rs

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
use ::proto::{FromProto, ToProto};
2-
use anyhow::{anyhow, Context as _, Result};
2+
use anyhow::{anyhow, Result};
33
use extension::ExtensionHostProxy;
44
use extension_host::headless_host::HeadlessExtensionStore;
55
use fs::Fs;
6-
use git::repository::RepoPath;
7-
use gpui::{App, AppContext as _, AsyncApp, Context, Entity, PromptLevel, SharedString};
6+
use gpui::{App, AppContext as _, AsyncApp, Context, Entity, PromptLevel};
87
use http_client::HttpClient;
98
use language::{proto::serialize_operation, Buffer, BufferEvent, LanguageRegistry};
109
use node_runtime::NodeRuntime;
1110
use project::{
1211
buffer_store::{BufferStore, BufferStoreEvent},
13-
git::{GitStore, Repository},
12+
git::GitStore,
1413
project_settings::SettingsObserver,
1514
search::SearchQuery,
1615
task_store::TaskStore,
1716
worktree_store::WorktreeStore,
18-
LspStore, LspStoreEvent, PrettierStore, ProjectEntryId, ProjectPath, ToolchainStore,
19-
WorktreeId,
17+
LspStore, LspStoreEvent, PrettierStore, ProjectPath, ToolchainStore, WorktreeId,
2018
};
2119
use remote::ssh_session::ChannelClient;
2220
use rpc::{
@@ -83,14 +81,14 @@ impl HeadlessProject {
8381
store
8482
});
8583

86-
let git_store =
87-
cx.new(|cx| GitStore::new(&worktree_store, buffer_store.clone(), None, None, cx));
88-
8984
let buffer_store = cx.new(|cx| {
9085
let mut buffer_store = BufferStore::local(worktree_store.clone(), cx);
9186
buffer_store.shared(SSH_PROJECT_ID, session.clone().into(), cx);
9287
buffer_store
9388
});
89+
90+
let git_store =
91+
cx.new(|cx| GitStore::new(&worktree_store, buffer_store.clone(), None, None, cx));
9492
let prettier_store = cx.new(|cx| {
9593
PrettierStore::new(
9694
node_runtime.clone(),

0 commit comments

Comments
 (0)