When editing PL/SQL files I look for a way to open a file based on a word under cursor and preferable jump to a certain positon.
Files are all located in same directory.
Example file app_dummy.pkb contains:
begin
dbms_output.put_line('Example');
app_package.procedure1( i_input1 => 'mmm' );
exception
when others then raise...
end;
Looking for a way to open app_package.pkb (extension is known) in another buffer and move cursor to procedure1.
I know there is ctags but not all systems I work on have that available.