Alex Biery
Alex Biery

Reputation: 65

Jump directly from one package body into another package body in PL/SQL developer

I'm using a trial version of PL/SQL developer 11.0.6.1796 and attempting to jump from package body A to package body B using a ctrl + click navigation.

Instead of jumping to the B package body - I'm taken to the B package spec. Are there any switches/preferences available to indicate where in the entire package you want to jump or is this just unsupported?

Example functionality in Toad: https://www.toadworld.com/products/sql-navigator/f/51/t/21833

Related SO question for SQL SQLDeveloper jump between Package body and Package spec

Upvotes: 3

Views: 1484

Answers (1)

Jon Heller
Jon Heller

Reputation: 36807

Ctrl+Left Click goes to the package spec but Ctrl+Right Click goes to the package body. It may even go to the beginning of the relevant package procedure or function.

Upvotes: 5

Related Questions