evil-mc icon indicating copy to clipboard operation
evil-mc copied to clipboard

Multiple cursors implementation for evil-mode

Results 43 evil-mc issues
Sort by recently updated
recently updated
newest added

Hello. Sorry, maybe it's not a right place for such question, but does evil mode can make such thing ? ![ezgif-5-e088706bcd](https://user-images.githubusercontent.com/7874052/158870373-3acb344d-8ea8-4078-8d23-ca57a56c35cf.gif) I tried: 1. `evil-visual-block` 2. `select 3 lines` 3....

Running emacs 27.2 with just this config: ``` (require 'evil) (evil-mode 1) (setq evil-move-cursor-back nil) ;; Entering and leaving insert mode is idempotent (require 'evil-mc) (global-evil-mc-mode 1) ``` Given a...

Thank you for evil-mc! When running emacs in a terminal, the bar cursor appears as an empty block, which was confusing to me until I stumbled across [this comment](https://github.com/gabesoft/evil-mc/issues/103#issuecomment-771809996) suggesting...

Desired behavior: Pass (or prompt for) a regex and then add cursors the the end of the resulting matches. This would allow quick setup of cursors using regular expressions.

Does not insert control characters on other cursors except current cursor inserted via `quoted-insert`.

Here the function `chom/toggle-thing` replaces using regexp matches defined in `chom/toggle-thing-alist`. For exmaple `(visual . ("test" . "tested"))` says: in visual mode check if selected region is equal to "test"...

I am trying to fix [#27](https://github.com/gabesoft/evil-mc/issues/27) by making some changes to evil-escape. I have got it mostly working with one minor issue that I hope I could get some help...

`esc` unaligns the cursors when the real cursor is on the first column, but at least one fake cursor is not. ### Reproduction steps With multiple words in a buffer....

I use evil-escape to quit insert-state,but I find a trouble with this. ``` evil evil evil ``` I edit (insert) ``` helloedit helloedit helloedit ``` when I press escape,it quit...

`evil-undo` (`u`) unaligns the cursors, `undo` (`C-/`) keeps them aligned. ### Reproduction steps With multiple words in a buffer. ``` abcdef abcdef abcdef ``` - In evil normal state, create...