variable highlighting and local procedures

Worker

Member³
Given the following contents of a program window:

Code:
procedure foo is

  xyz number := 0;

  procedure bar is
  begin
    xyz := xyz + 1;
    dbms_output.put_line(xyz);
  end bar;

begin
  xyz := xyz + 1;
  bar();
end foo;
When clicking on "xyz" anywhere outside of "bar", all occurrences (including those inside of "bar") are highlighted. However, when clicking on "xyz" inside of "bar", nothing is highlighted.
 
Hy,

is there a chance to get the highlighting only if i press a button like ?

We got large packages an whenever i click on a variable i have to wait 2-5 sec to work again.
 
If you disable the Program Window preference "Highlight variables", you can use the Edit > Find Matches function to highlight the variables.
 
Back
Top