Fix some edge-cases in vim visual delete (#12131)

Release Notes:

- vim: Fixed `shift-d` in visual and visual block mode.
This commit is contained in:
Conrad Irwin 2024-05-22 12:54:41 -06:00 committed by GitHub
parent c084b6aade
commit c2f650fe49
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 66 additions and 6 deletions

View file

@ -493,8 +493,8 @@
"shift-o": "vim::OtherEnd",
"d": "vim::VisualDelete",
"x": "vim::VisualDelete",
"shift-d": "vim::VisualDelete",
"shift-x": "vim::VisualDelete",
"shift-d": "vim::VisualDeleteLine",
"shift-x": "vim::VisualDeleteLine",
"y": "vim::VisualYank",
"shift-y": "vim::VisualYank",
"p": "vim::Paste",