Folding does not work

Erhan

Member²
Hi,

Here is a sample procedure. When you fold from v_temp1 it doesn't work. When you fold from p_test2 it also doesn't work. Can you check this?

create procedure p_test is
v_temp1 number;
v_temp2 number;
procedure p_test2 is
begin
null;
end;

procedure p_test3 is
begin
null;
end;
begin
null;
end;

Thanks
 
Can you go to Preferences > User Interface / Editor and check if the options "Allow folding" and "Folding on by default" are enabled?
 
If I paste the text from your first post into a Program Window, folding seems to work fine. Can you send one or two screenshots to visualize the problem?
 
First image is the procedure, second is folded from the variable, third is folded from the first procedure.

Erhan
 
Last edited:
For me the folding "works".
But
- folding p_test2 also includes p_test3 (i would imagine only p_test2 would be minimized).
- folding v_temp1 also includes the header of p_test2
 
Last edited:
Yeah the way it "works" for you "doesn't work" for me. It was working in version 10 btw.

Erhan
 
Last edited:
Hi Marco,

Will this be fixed in the final version of v14? It is very hard to use this if we have more than one subprocedures.

Erhan
 
That's what I'm saying. It is also bugged in v13. It was working well in v10. Did you check my screenshots? Is it seem ok?
 
Back
Top