Gabriel Adomnicai
Gabriel Adomnicai
I fixed the empty line bug in this commit 2a550281d6081c94304b3206b43d94cfc2fc5db2. However, the fix only addresses entering insert mode via `i`. It still occurs when entering insert mode via `a` or...
The purpose of that function is cursor creation. It would be nice to have a function that creates the cursors at the beginning of text as well. But, probably not...
Thanks for reporting. Another way to disable it would be to add `evil-smartparens-mode` to `evil-mc-incompatible-minor-modes`. A better fix would be to implement the necessary evil-smartparens commands, similar to https://github.com/gabesoft/evil-mc/commit/35b87e89123f287b8e5a35ded41cd1b4a3182d67
Great suggestion
I added a mode-line indicator for paused state in this commit fdeb7dc992234b6f52ff43c98d02761d7a671208. This may be enough for now but I'll look into changing the cursors face as well at some...
Yea, vim has virtual white space too. But, I think that is more useful for visual blocks than for multiple cursors. In fact `evil-mc` doesn't support visual block selection. Also,...
Sounds good. I think that most of functionality that you're looking for can be accomplished with either evil-mc or visual block. But, otherwise this functionality really should be implemented in...
I think number 3 is more or less possible right now since you could copy a line and then create some cursors and paste it in multiple places. The only...
The only way to understand how to do this is to dive in and read some code. I'd start with the evil mode package
Thanks for the suggestion. I'll look into inhibiting some of the hooks when I get a chance