Fix remaining vim failures

This commit is contained in:
Nathan Sobo 2023-04-20 15:25:11 -06:00
parent 137d9384b5
commit 0bce80b6f8
10 changed files with 331 additions and 313 deletions

View file

@ -1017,15 +1017,17 @@ mod test {
let test_case = indoc! {"
ˇaaaˇbˇ ˇ ˇbˇbˇ aˇaaˇbaaa
ˇ ˇbˇaaˇa ˇbˇbˇb
ˇ
ˇ
ˇb
"};
"
}
.replace("", " ");
for count in 1..=3 {
cx.assert_binding_matches_all([&count.to_string(), "shift-f", "b"], test_case)
cx.assert_binding_matches_all([&count.to_string(), "shift-f", "b"], &test_case)
.await;
cx.assert_binding_matches_all([&count.to_string(), "shift-t", "b"], test_case)
cx.assert_binding_matches_all([&count.to_string(), "shift-t", "b"], &test_case)
.await;
}
}