Personally while there are some task that's easier with multiple cursors, I have personally yet to find any use case where regexp replace in selections doesn't work as well.
Multi-cursor is more flexible than rectangular selection. You can skip or delete words of varying length etc. It is certainly less powerful than vim macro and regex, but it's easy to use because
1) there are less shortcuts to remember
2) no need to think too much like figuring out regex for simple tasks
3) it gives instant feedback
madacol|1 year ago
With regex, you need to plan everything you need to do and then surgically do it.
With multiple cursors, you only need to know (roughly) where you need to change, the rest you figure it out on the fly.
lf-non|1 year ago
germandiago|1 year ago
As for regexps, the syntax in Emacs is hell, but I do know Emcacs has very powerful edit/replace tools.
overtomanu|1 year ago
Video showing this https://youtu.be/lhFNWTAIzOI?t=28
cylinder714|1 year ago
edflsafoiewq|1 year ago
treflop|1 year ago
I also haven’t found a use for multiple cursors.
Writing a regex is quick and easy.