Created
January 30, 2013 09:29
-
-
Save vlasovskikh/4671936 to your computer and use it in GitHub Desktop.
IdeaVim test example
This file contains hidden or 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