Let's assume a cursor for loop like this:
	
	
	
		
Observed behavior:
At least within a additional begin-end block, the row variable "text" is not recognized by PL/SQL-Developer's code completion (F6). Even in the loop before the begin-end block the row variable is not offered by the code completion.
Expected behavior:
A row variable in a cursor for loop should always be identified by the code completion (F6).
Version 15.0.3.2059 (64 bit)
Windows 10 Build 19045
				
			
		Code:
	
	for text in cGetAllLines
  loop
    [some code using text]
    begin
      [some code using text]
    exception
      ...
    end;
end loop;
	Observed behavior:
At least within a additional begin-end block, the row variable "text" is not recognized by PL/SQL-Developer's code completion (F6). Even in the loop before the begin-end block the row variable is not offered by the code completion.
Expected behavior:
A row variable in a cursor for loop should always be identified by the code completion (F6).
Version 15.0.3.2059 (64 bit)
Windows 10 Build 19045