Hot track highlighting

Gustavo

Member³
I'd like a new "break level" for hot track highlighting. I'd like the program declaration to be selectable through it. Within the code below, there should be an extra option (Function/Procedure Declaration), right after "Function" when the cursor is anywhere between (and including) "Function" and "Return VarChar2":

Code:
Create Or Replace Package Body apps.nxt_pn_wf_pay_pkg Is

  Function get_field(p_linha     In VarChar2,
                     p_campo     In Number,
                     p_separador In VarChar2 Default ';') Return VarChar2 Is
    vn_pos_ini Number;
    vn_pos_fim Number;
This way I could easily copy the declaration to the Package Spec.
 
Back
Top