IdeaVim test example
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
Given the following buffer in the <Normal mode>: | |
""" | |
123<caret>456 | |
123789 | |
""" | |
When I type: | |
""" | |
cw, abc, <Esc>, hhj, . | |
""" | |
Then the buffer should contain: | |
""" | |
123abc | |
123ab<caret>c | |
""" | |
But the buffer actually contains: | |
""" | |
12bc3 | |
1ab<caret>c2 | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment