I have two files:
api.pks.sql
create or replace package api is
function meaning_of_life return number;
end;
/
api.pkb.sql
create or replace package body api is
function meaning_of_life return number is
begin
return 42;
end;
end;
/
Go to and peek doesn't work on this local files. As I understand go to work only with DB connection.
It will be nice if extension work in two mode or have priority for offline sources / online sources.
In this case I'll expect that if I click GoTo definition in api.pks.sql It will open api.pkb.sql.
Some other extensions have this functionality, xyz.plsql-language for example but it can't be used both same time.