first pass of merging in warp (doesn't build)

This commit is contained in:
Ryan Ward
2026-07-01 16:08:58 -05:00
parent 2f64909469
commit 4770ac06b5
3662 changed files with 414574 additions and 89772 deletions
+5 -6
View File
@@ -1,13 +1,12 @@
use std::{
collections::{BTreeSet, HashMap},
time::Duration,
};
use std::collections::{BTreeSet, HashMap};
use std::time::Duration;
use bounded_vec_deque::BoundedVecDeque;
use instant::Instant;
use super::time::{Global, Lamport, LamportValue};
use crate::editor::view::{model::LocalSelections, PlainTextEditorViewAction};
use crate::editor::view::model::LocalSelections;
use crate::editor::view::PlainTextEditorViewAction;
/// The maximum time we will batch consecutive edits for the same [`Action`].
/// The "batch" here is not to be confused with the [`Buffer`]'s notion
@@ -269,5 +268,5 @@ impl PlainTextEditorViewAction {
}
#[cfg(test)]
#[path = "undo_test.rs"]
#[path = "undo_tests.rs"]
mod tests;