hlissner / evil-multiedit

Multiple cursors for evil-mode, based on iedit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to skip a match?

shenhai-ran opened this issue · comments

If I don't want to edit all the matches, how can I skip some of them?

Thanks!

There is no skip-next-match command, atm, but with the default keybinds you can press RET (bound to evil-multiedit-toggle-or-restrict-region) on iedit regions to toggle them.

You can also bind this command in visual mode to be able to select a region and restrict iedit to it.

(evil-define-key* 'visual 'global (kbd "RET") #'evil-multiedit-toggle-or-restrict-region)

Can't you use iedit-toggle-selection?