mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Remove apply_transaction helper (#5598)
This commit is contained in:
parent
68fc10903a
commit
a20a96abdc
10 changed files with 46 additions and 67 deletions
|
@ -130,7 +130,7 @@ pub async fn test_key_sequence_with_input_text<T: Into<TestCase>>(
|
|||
})
|
||||
.with_selection(test_case.in_selection.clone());
|
||||
|
||||
helix_view::apply_transaction(&transaction, doc, view);
|
||||
doc.apply(&transaction, view.id);
|
||||
|
||||
test_key_sequence(
|
||||
&mut app,
|
||||
|
@ -315,7 +315,7 @@ impl AppBuilder {
|
|||
.with_selection(selection);
|
||||
|
||||
// replace the initial text with the input text
|
||||
helix_view::apply_transaction(&trans, doc, view);
|
||||
doc.apply(&trans, view.id);
|
||||
}
|
||||
|
||||
Ok(app)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue