Can I ask what you're expecting the \1 and \2 back references to accomplish in your replacement expressions?
You can't use capture groups in normal mode. And in regex, where you can use capture groups, you've not defined any in your Find expression.
Wonky stuff quite often happens when back references that don't have any corresponding capture groups are included in replacement expressions.
Last edited by DiapDealer; 03-08-2022 at 09:27 PM.
|