when I use this regular expressino to replace many entries each with different value
(?<=TITLE ").*?(?=")
TITLE "unknowXML"
FLAG "OFF"
Location "."
TITLE "HTML"
FLAG "OFF"
Location "./data/root"
TITLE "HTML"
FLAG "ON"
Location "/home/user/nonroot"
.
.
.
to something like
TITLE "1"
FLAG "OFF"
Location "."
TITLE "2"
FLAG "OFF"
Location "./data/root"
TITLE "3"
FLAG "ON"
Location "/home/user/nonroot"
.
.
.
eveytime I replaced one, and it automatically jump to next match.
The problem is when I enter the new target value for replace and click on replace, it directly replace next value and skip current jumped value
so the result becomes
TITLE "1"
FLAG "OFF"
Location "."
TITLE "HTML"
FLAG "OFF"
Location "./data/root"
TITLE "2"
FLAG "ON"
Location "/home/user/nonroot"
.
.
.
I think it’s a bad behaviour, but not sure if it’s a bug