how to skip a match?
shenhai-ran opened this issue · 2 comments
shenhai-ran commented
If I don't want to edit all the matches, how can I skip some of them?
Thanks!
hlissner commented
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)
mohkale commented
Can't you use iedit-toggle-selection
?