Support "dtx" vim key combination when "x" is immediately to the right of the cursor (#6830)
Closes #4358
The bug originates on this line:
5db7e8f89e/crates/vim/src/motion.rs (L451)
- When running "dtx" on "ˇabcx", the range to delete is 0 -> 2 ("abc")
- When running "dtx" on "abˇcx", the range to delete is 2 -> 2 ("c"), so
`new_point == point` and the function incorrectly returns `None` and "c"
is not deleted
- We need to disambiguate between the "not found" case and the "found
immediately to the right" case
- This bug does not apply to the backwards case ("dTx")
Release Notes:
- Fixed "dtx" vim key combination when "x" is immediately to the right
of the cursor (#4358)
This commit is contained in:
commit
331b6e7e6e
3 changed files with 28 additions and 8 deletions
|
@ -434,10 +434,13 @@ impl Motion {
|
||||||
SelectionGoal::None,
|
SelectionGoal::None,
|
||||||
),
|
),
|
||||||
Matching => (matching(map, point), SelectionGoal::None),
|
Matching => (matching(map, point), SelectionGoal::None),
|
||||||
FindForward { before, char } => (
|
FindForward { before, char } => {
|
||||||
find_forward(map, point, *before, *char, times),
|
if let Some(new_point) = find_forward(map, point, *before, *char, times) {
|
||||||
SelectionGoal::None,
|
return Some((new_point, SelectionGoal::None));
|
||||||
),
|
} else {
|
||||||
|
return None;
|
||||||
|
}
|
||||||
|
}
|
||||||
FindBackward { after, char } => (
|
FindBackward { after, char } => (
|
||||||
find_backward(map, point, *after, *char, times),
|
find_backward(map, point, *after, *char, times),
|
||||||
SelectionGoal::None,
|
SelectionGoal::None,
|
||||||
|
@ -882,7 +885,7 @@ fn find_forward(
|
||||||
before: bool,
|
before: bool,
|
||||||
target: char,
|
target: char,
|
||||||
times: usize,
|
times: usize,
|
||||||
) -> DisplayPoint {
|
) -> Option<DisplayPoint> {
|
||||||
let mut to = from;
|
let mut to = from;
|
||||||
let mut found = false;
|
let mut found = false;
|
||||||
|
|
||||||
|
@ -897,12 +900,12 @@ fn find_forward(
|
||||||
if found {
|
if found {
|
||||||
if before && to.column() > 0 {
|
if before && to.column() > 0 {
|
||||||
*to.column_mut() -= 1;
|
*to.column_mut() -= 1;
|
||||||
map.clip_point(to, Bias::Left)
|
Some(map.clip_point(to, Bias::Left))
|
||||||
} else {
|
} else {
|
||||||
to
|
Some(to)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
from
|
None
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -472,4 +472,11 @@ mod test {
|
||||||
the ˇlazy dog"})
|
the ˇlazy dog"})
|
||||||
.await;
|
.await;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[gpui::test]
|
||||||
|
async fn test_delete_to_adjacent_character(cx: &mut gpui::TestAppContext) {
|
||||||
|
let mut cx = NeovimBackedTestContext::new(cx).await;
|
||||||
|
cx.assert_neovim_compatible("ˇax", ["d", "t", "x"]).await;
|
||||||
|
cx.assert_neovim_compatible("aˇx", ["d", "t", "x"]).await;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
10
crates/vim/test_data/test_delete_to_adjacent_character.json
Normal file
10
crates/vim/test_data/test_delete_to_adjacent_character.json
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{"Put":{"state":"ˇax"}}
|
||||||
|
{"Key":"d"}
|
||||||
|
{"Key":"t"}
|
||||||
|
{"Key":"x"}
|
||||||
|
{"Get":{"state":"ˇx","mode":"Normal"}}
|
||||||
|
{"Put":{"state":"aˇx"}}
|
||||||
|
{"Key":"d"}
|
||||||
|
{"Key":"t"}
|
||||||
|
{"Key":"x"}
|
||||||
|
{"Get":{"state":"aˇx","mode":"Normal"}}
|
Loading…
Add table
Add a link
Reference in a new issue