Code assistent not always working properly

The code assistant in the Program Window works fine if the "("is right behind the name of a function.
If you type "(" on the next line, the Code assistant doesn't work.

Is it possible to add this to the list of enhancement requests?

Thanks in advance.
 
Same problem here, our coding styleguide requires that the ( is on the next line => code assistent doesn't work :(

But that's one of the major features why we are looking at PL/SQL Developer to replace our existing IDE.

Regards
Patrick
 
Another case, where the code Assistent fails:
If you define a plsql-table (or array) of records, then you type something like:
mytable(index).
No Code assistent pops up for the elements of the record :(

And yet antoher case of missing assistent:

CURSOR my_cur
IS SELECT col_a, col_b FROM my_table;
BEGIN
FOR
my_rec IN my_cur
LOOP
my_rec.

... No assistent :(
 
code assistant doesn't work with synonyms for tables/views in another database re dropdown of column names.
Any chance of fixing this (or giving an option to switch it on/off for speed) since we use cross database synonyms extensively
 
Back
Top