find and replace rubymine code example
Example 1: vim find and replace all recursively
vim mode/**/*.js
:bufdo %s/findterm/replaceterm/g | update
Example 2: using capture groups in find and replace vscode
// Given some regular expression
(?<capture_group>...)...(?<another_capture_group>...)
// You can reference them in your replace by using
$1, $2,...