Skip to content

Commit f3a6930

Browse files
Fix conflicts
1 parent 6b4e201 commit f3a6930

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

crates/fs/src/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ pub mod fs_watcher;
77
use anyhow::{Context as _, Result, anyhow};
88
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
99
use ashpd::desktop::trash;
10-
use futures::stream::iter;
1110
use encodings::Encoding;
11+
use futures::stream::iter;
1212
use gpui::App;
1313
use gpui::BackgroundExecutor;
1414
use gpui::Global;

crates/project/src/buffer_store.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ use anyhow::{Context as _, Result, anyhow};
88
use client::Client;
99
use collections::{HashMap, HashSet, hash_map};
1010
use encodings::Encoding;
11+
use fs::Fs;
12+
use futures::StreamExt;
1113
use futures::{Future, FutureExt as _, channel::oneshot, future::Shared};
1214
use gpui::{
1315
App, AppContext as _, AsyncApp, Context, Entity, EventEmitter, Subscription, Task, WeakEntity,
@@ -1177,7 +1179,7 @@ impl BufferStore {
11771179
let buffers = this.update(cx, |this, cx| {
11781180
project_paths
11791181
.into_iter()
1180-
.map(|project_path| this.open_buffer(project_path, None, cx))
1182+
.map(|project_path| this.open_buffer(project_path, None, false, true, cx))
11811183
.collect::<Vec<_>>()
11821184
})?;
11831185
for buffer_task in buffers {

crates/project/src/lsp_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8234,7 +8234,7 @@ impl LspStore {
82348234
lsp_store
82358235
.update(cx, |lsp_store, cx| {
82368236
lsp_store.buffer_store().update(cx, |buffer_store, cx| {
8237-
buffer_store.open_buffer(project_path, None, false, true,cx)
8237+
buffer_store.open_buffer(project_path, None, false, true, cx)
82388238
})
82398239
})?
82408240
.await

0 commit comments

Comments
 (0)