noctuid / lispyville

lispy + evil = lispyville

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Odd behavior when yanking/pasting with block selection

dieggsy opened this issue · comments

commented

For example, with lispyville-mode on, if I have:

"
123 456 789
123 456 789
"

And I highlight the 456 column and delete it (with point at top 4, C-v 3l j d), then try to paste them after the 789 column (with point at top 9, p) I get:

"
123 789456 
456 
123 789
"

If repeat all these steps with lispyville-mode off, I get the expected:

"
123 789456
123 789456
"

This should be fixed on the 31 branch. I'll merge after fixing a few bugs and adding more tests.

This is fixed now. Please open a new issue if you find any strange behavior with any other operators (particularly linewise) after this change.