forked from zed-industries/zed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix some edge-cases in vim visual delete (zed-industries#12131)
Release Notes: - vim: Fixed `shift-d` in visual and visual block mode.
- Loading branch information
1 parent
c084b6a
commit c2f650f
Showing
3 changed files
with
66 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{"Put":{"state":"The ˇquick brown\nfox jumps over\nthe lazy dog\n"}} | ||
{"Key":"v"} | ||
{"Key":"down"} | ||
{"Key":"shift-d"} | ||
{"Get":{"state":"the ˇlazy dog\n","mode":"Normal"}} | ||
{"Put":{"state":"The ˇquick brown\nfox jumps over\nthe lazy dog\n"}} | ||
{"Key":"ctrl-v"} | ||
{"Key":"down"} | ||
{"Key":"shift-d"} | ||
{"Get":{"state":"Theˇ \nfox \nthe lazy dog\n","mode":"Normal"}} |