@@ -1597,6 +1597,17 @@ impl Editor {
1597
1597
}
1598
1598
this.tasks_update_task = Some(this.refresh_runnables(window, cx));
1599
1599
this._subscriptions.extend(project_subscriptions);
1600
+ this._subscriptions
1601
+ .push(cx.subscribe_self(|editor, e: &EditorEvent, cx| {
1602
+ if let EditorEvent::SelectionsChanged { local } = e {
1603
+ if *local {
1604
+ let new_anchor = editor.scroll_manager.anchor();
1605
+ editor.update_restoration_data(cx, move |data| {
1606
+ data.scroll_anchor = new_anchor;
1607
+ });
1608
+ }
1609
+ }
1610
+ }));
1600
1611
1601
1612
this.end_selection(window, cx);
1602
1613
this.scroll_manager.show_scrollbars(window, cx);
@@ -2317,18 +2328,24 @@ impl Editor {
2317
2328
if selections.len() == 1 {
2318
2329
cx.emit(SearchEvent::ActiveMatchChanged)
2319
2330
}
2320
- if local
2321
- && self.is_singleton(cx)
2322
- && WorkspaceSettings::get(None, cx).restore_on_startup != RestoreOnStartupBehavior::None
2323
- {
2324
- if let Some(workspace_id) = self.workspace.as_ref().and_then(|workspace| workspace.1) {
2325
- let background_executor = cx.background_executor().clone();
2326
- let editor_id = cx.entity().entity_id().as_u64() as ItemId;
2327
- let snapshot = self.buffer().read(cx).snapshot(cx);
2328
- let selections = selections.clone();
2329
- self.serialize_selections = cx.background_spawn(async move {
2331
+ if local && self.is_singleton(cx) {
2332
+ let inmemory_selections = selections.iter().map(|s| s.range()).collect();
2333
+ self.update_restoration_data(cx, |data| {
2334
+ data.selections = inmemory_selections;
2335
+ });
2336
+
2337
+ if WorkspaceSettings::get(None, cx).restore_on_startup != RestoreOnStartupBehavior::None
2338
+ {
2339
+ if let Some(workspace_id) =
2340
+ self.workspace.as_ref().and_then(|workspace| workspace.1)
2341
+ {
2342
+ let snapshot = self.buffer().read(cx).snapshot(cx);
2343
+ let selections = selections.clone();
2344
+ let background_executor = cx.background_executor().clone();
2345
+ let editor_id = cx.entity().entity_id().as_u64() as ItemId;
2346
+ self.serialize_selections = cx.background_spawn(async move {
2330
2347
background_executor.timer(SERIALIZATION_THROTTLE_TIME).await;
2331
- let selections = selections
2348
+ let db_selections = selections
2332
2349
.iter()
2333
2350
.map(|selection| {
2334
2351
(
@@ -2338,11 +2355,12 @@ impl Editor {
2338
2355
})
2339
2356
.collect();
2340
2357
2341
- DB.save_editor_selections(editor_id, workspace_id, selections )
2358
+ DB.save_editor_selections(editor_id, workspace_id, db_selections )
2342
2359
.await
2343
2360
.with_context(|| format!("persisting editor selections for editor {editor_id}, workspace {workspace_id:?}"))
2344
2361
.log_err();
2345
2362
});
2363
+ }
2346
2364
}
2347
2365
}
2348
2366
@@ -2356,13 +2374,24 @@ impl Editor {
2356
2374
return;
2357
2375
}
2358
2376
2377
+ let snapshot = self.buffer().read(cx).snapshot(cx);
2378
+ let inmemory_folds = self.display_map.update(cx, |display_map, cx| {
2379
+ display_map
2380
+ .snapshot(cx)
2381
+ .folds_in_range(0..snapshot.len())
2382
+ .map(|fold| fold.range.deref().clone())
2383
+ .collect()
2384
+ });
2385
+ self.update_restoration_data(cx, |data| {
2386
+ data.folds = inmemory_folds;
2387
+ });
2388
+
2359
2389
let Some(workspace_id) = self.workspace.as_ref().and_then(|workspace| workspace.1) else {
2360
2390
return;
2361
2391
};
2362
2392
let background_executor = cx.background_executor().clone();
2363
2393
let editor_id = cx.entity().entity_id().as_u64() as ItemId;
2364
- let snapshot = self.buffer().read(cx).snapshot(cx);
2365
- let folds = self.display_map.update(cx, |display_map, cx| {
2394
+ let db_folds = self.display_map.update(cx, |display_map, cx| {
2366
2395
display_map
2367
2396
.snapshot(cx)
2368
2397
.folds_in_range(0..snapshot.len())
@@ -2376,7 +2405,7 @@ impl Editor {
2376
2405
});
2377
2406
self.serialize_folds = cx.background_spawn(async move {
2378
2407
background_executor.timer(SERIALIZATION_THROTTLE_TIME).await;
2379
- DB.save_editor_folds(editor_id, workspace_id, folds )
2408
+ DB.save_editor_folds(editor_id, workspace_id, db_folds )
2380
2409
.await
2381
2410
.with_context(|| format!("persisting editor folds for editor {editor_id}, workspace {workspace_id:?}"))
2382
2411
.log_err();
@@ -17454,19 +17483,6 @@ impl Editor {
17454
17483
{
17455
17484
let buffer_snapshot = OnceCell::new();
17456
17485
17457
- if let Some(selections) = DB.get_editor_selections(item_id, workspace_id).log_err() {
17458
- if !selections.is_empty() {
17459
- let snapshot =
17460
- buffer_snapshot.get_or_init(|| self.buffer.read(cx).snapshot(cx));
17461
- self.change_selections(None, window, cx, |s| {
17462
- s.select_ranges(selections.into_iter().map(|(start, end)| {
17463
- snapshot.clip_offset(start, Bias::Left)
17464
- ..snapshot.clip_offset(end, Bias::Right)
17465
- }));
17466
- });
17467
- }
17468
- };
17469
-
17470
17486
if let Some(folds) = DB.get_editor_folds(item_id, workspace_id).log_err() {
17471
17487
if !folds.is_empty() {
17472
17488
let snapshot =
@@ -17485,6 +17501,19 @@ impl Editor {
17485
17501
);
17486
17502
}
17487
17503
}
17504
+
17505
+ if let Some(selections) = DB.get_editor_selections(item_id, workspace_id).log_err() {
17506
+ if !selections.is_empty() {
17507
+ let snapshot =
17508
+ buffer_snapshot.get_or_init(|| self.buffer.read(cx).snapshot(cx));
17509
+ self.change_selections(None, window, cx, |s| {
17510
+ s.select_ranges(selections.into_iter().map(|(start, end)| {
17511
+ snapshot.clip_offset(start, Bias::Left)
17512
+ ..snapshot.clip_offset(end, Bias::Right)
17513
+ }));
17514
+ });
17515
+ }
17516
+ };
17488
17517
}
17489
17518
17490
17519
self.read_scroll_position_from_db(item_id, workspace_id, window, cx);
0 commit comments