We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9387dfa commit 4802f26Copy full SHA for 4802f26
helix-term/tests/test/splits.rs
@@ -151,5 +151,15 @@ async fn test_changes_in_splits_apply_to_all_views() -> anyhow::Result<()> {
151
// was not updated and after the `kd` step, pointed outside of the document.
152
test(("#[|]#", "<C-w>v[<space><C-s><C-w>wkd<C-w>qd", "#[|]#")).await?;
153
154
+ // Transactions are applied to the views for windows lazily when they are focused.
155
+ // This case panics if the transactions and inversions are not applied in the
156
+ // correct order as we switch between windows.
157
+ test((
158
+ "#[|]#",
159
+ "[<space>[<space>[<space><C-w>vuuu<C-w>wUUU<C-w>quuu",
160
161
+ ))
162
+ .await?;
163
+
164
Ok(())
165
}
0 commit comments