Allow repeat in visual mode (#33569)

Release Notes:

- vim: Allow `.` in visual mode.
This commit is contained in:
Conrad Irwin 2025-06-30 14:04:28 -06:00 committed by GitHub
parent b0086b472f
commit a2e786e0f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 93 additions and 52 deletions

View file

@ -2071,3 +2071,42 @@ async fn test_paragraph_multi_delete(cx: &mut gpui::TestAppContext) {
cx.simulate_shared_keystrokes("4 d a p").await;
cx.shared_state().await.assert_eq(indoc! {"ˇ"});
}
#[gpui::test]
async fn test_multi_cursor_replay(cx: &mut gpui::TestAppContext) {
let mut cx = VimTestContext::new(cx, true).await;
cx.set_state(
indoc! {
"
oˇne one one
two two two
"
},
Mode::Normal,
);
cx.simulate_keystrokes("3 g l s wow escape escape");
cx.assert_state(
indoc! {
"
woˇw wow wow
two two two
"
},
Mode::Normal,
);
cx.simulate_keystrokes("2 j 3 g l .");
cx.assert_state(
indoc! {
"
wow wow wow
woˇw woˇw woˇw
"
},
Mode::Normal,
);
}