Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
IdeaVim test example
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