ZIm/crates/vim/src
Conrad Irwin 331b6e7e6e
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)
2024-01-28 19:46:14 -07:00
..
normal Support "dtx" vim key combination when "x" is immediately to the right of the cursor (#6830) 2024-01-28 19:46:14 -07:00
test Work on tests 2024-01-21 22:00:35 -07:00
command.rs Fix panic when typing umlauts in command palette using Vim mode 2024-01-26 10:57:14 +01:00
editor_events.rs Fix some cases of broken repeat in vim 2024-01-18 13:20:08 -07:00
insert.rs Editor docs (#4097) 2024-01-18 00:48:37 +01:00
mode_indicator.rs Use try_global() 2024-01-18 01:33:30 -05:00
motion.rs vim: fix dtx when x is immediately to the right 2024-01-26 16:58:48 -08:00
normal.rs Add support for u and U in vim visual mode 2024-01-28 15:13:09 -05:00
object.rs Start work on API docs for the language crate (#3981) 2024-01-19 10:04:45 -08:00
state.rs Remove 2 suffix for vim, diagnostics, go_to_line, theme_selector, command_palette, file_finder 2024-01-03 10:42:49 -08:00
test.rs Update all links point to community 2024-01-24 15:11:17 -05:00
utils.rs Merge branch 'main' into language-api-docs 2024-01-18 15:06:45 -08:00
vim.rs Fix a few more typos 2024-01-17 14:58:58 -08:00
visual.rs Update all links point to community 2024-01-24 15:11:17 -05:00