Code:
CREATE OR REPLACE PROCEDURE test is
BEGIN
dbms_output.put_line('This is a test');
-- cursor positioned on this line
dbms_output.put_line('This is the end of the test');
END test;
Ctrl-F (Find&Replace), 'This is' to be replaced with 'This is not', backward direction.
Code:
CREATE OR REPLACE PROCEDURE test is
BEGIN
dbms_output.put_line('This is not not not not not a test');
-- cursor positioned up here --^
dbms_output.put_line('This is the end of the test');
END test;
Not the result I was hoping for
On top of that the cursor position shifted, which is not the behaviour I want my IDE to have when I ask for a 'Find&Replace'.