diff options
author | Blaž Hrastnik | 2021-03-18 04:28:27 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-18 04:39:56 +0000 |
commit | 8eaf9a432d14b6c2dd084dabbea606e4b1e3baa0 (patch) | |
tree | a353a3a9182622b8434165825e03e2264bb444ea /helix-view/src | |
parent | 51c15da3c32b2f0bf3da6db9bca9496d333ec15a (diff) |
Make Transaction::change only rely on the rope.
Diffstat (limited to 'helix-view/src')
-rw-r--r-- | helix-view/src/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/src/document.rs b/helix-view/src/document.rs index 82258bde..eba6478d 100644 --- a/helix-view/src/document.rs +++ b/helix-view/src/document.rs @@ -394,7 +394,7 @@ mod test { doc.state.selection = Selection::single(0, 5); let transaction = Transaction::change( - &doc.state, + &doc.state.doc, vec![(0, 2, Some("aei".into())), (3, 5, Some("ou".into()))].into_iter(), ); // aeilou |