vscode-super-replace icon indicating copy to clipboard operation
vscode-super-replace copied to clipboard

The "Extract" functionality doesn't work anymore

Open dwiyatci opened this issue 1 year ago • 0 comments

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');
}

dwiyatci avatar Apr 04 '24 15:04 dwiyatci