vscode-super-replace
vscode-super-replace copied to clipboard
The "Extract" functionality doesn't work anymore
As the title says. The "Replace" functionality still works well, though.
Btw, kudos to you for the "Processing Function" functionality. It's insanely powerful once I know I can enter JS function expression there 👏🙌🙂↕️ e.g.
(s) => {
if (s.startsWith('shouldShow')) {
const s2 = s.replace('shouldShow', '');
return s2.replace(s2[0], s2[0].toLowerCase());
}
return s.replace('setShouldShow', 'set');
}