Navigation into Editor. Ctrl-PgUp/Dn

I have package header and body into the same file.

Ctrl-PgUp/Dn navigates between declarations into header only.
I.e. package body not included into navigation area.

Fix it, please!

This is working fine for me in the latest beta. Does it fail for you on all packages?

If just one, can you send it to me? john.dorlon@quest.com

Thanks

I reproduce problem on simple code:

create or replace package TEST_PKG
is
    function F1(P1 number)
        return number;

    function F2(P1 number)
        return number;
end TEST_PKG;

create or replace package body TEST_PKG
is
    function F1(P1 number)
        return number
    is
    begin
        return 1;
    end;

    function F2(P1 number)
        return number
    is
    begin
        return 2;
    end;
end TEST_PKG;

What materials I need to provide?

I just noticed you said CTRL+PgUp/Down.

I've been using Shift+CTRL+PgUp/Down.

For me, CTRL+PgUp/Down doesn't work in 14.2 either but Shift+CTRL+PgUp/Down does.

Did CTRL+PgUp/Down work for you in prior versions?
Does Shift+CTRL+PgUp/Down work?

Unfortunately, I didn't check it.

No:


Oh, sorry, I guess I didn't have enough coffee this morning.

I was actually trying Shift+Ctrl+Up/Down for something different. I can reproduce what you are talking about and will take a look at it.

Thank You, @JohnDorlon

Thanks, this will be fixed in the next beta.

Thank You, @mstaszew