Skip to content

Instantly share code, notes, and snippets.

@vlasovskikh
Created January 30, 2013 09:29
Show Gist options
  • Save vlasovskikh/4671936 to your computer and use it in GitHub Desktop.
Save vlasovskikh/4671936 to your computer and use it in GitHub Desktop.
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