Does the atom editor have any 'confirm each before replace option' similar to what VIM has, instead of a mass Find All replace?

0

In vim you can do %s/find/replace/gc to find all in file %s/<find>/<replace>/ and replace each instance in all lines g but confirm c first. I use it all the time; is there any way to replicate this behavior in the Atom Editor? I have the vim package installed and it works with the keystroke shortcuts, but it doesn't have the other features.

Bert

Posted 2019-05-08T11:54:38.733

Reputation: 1

Doesn't Atom come with find and replace out of the box? – Burgi – 2019-05-08T15:58:47.080

yes, but what it doesn't have is the ability to replace each instance one by one, instead of replacing all instances with one click. – Bert – 2019-05-09T21:03:42.737

No answers