Allow repeat in visual mode (#33569)
Release Notes: - vim: Allow `.` in visual mode.
This commit is contained in:
parent
b0086b472f
commit
a2e786e0f9
3 changed files with 93 additions and 52 deletions
|
@ -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,
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue