Hierarchy pane x Block delete

Gustavo

Member³
Marco,

This is another problem with the hierarchy pane.

Code:
begin
  select sysdate into vd_date from dual;

  a := 1;

  /*
  asd sadf
  sdf
   fds
   fs
   df
   */

   begin
   a := 1;
   select a into b from dual;
   end;
end;

1. Place the cursor somewhere within the comment;
2. The hierarchy pane should show: Code section -> Block -> Code section -> Comment;
3. Click "Comment" to select some text;
4. Delete the comment block;
5. Hierarchy pane will show correct info: Code section -> Block -> Code section;
6. Navigate with the down arrow;
7. Hierarchy pane will show: Code section -> Block -> Code section -> Select. Note there will be no changes until we you get to the assignment line. Also note the command above the cursor is not a select, it is a statement.

Regards,
Gustavo
 
It seems to work just fine. You mentioned:

3. Click "Comment" to select some text;

Clicking "Comment" on the hierarchy pane will exactly select the comment text, and not "some text". Can you confirm?

4. Delete the comment block;

Can you let me know how exactly you delete the comment block?
 
Back
Top