Features request

Hi,

I have two requests:
  • Add a possibility to switch between tabs in the LRU order (possibly as a new option in the Prefferences -> Window Types -> General).
  • Having the following code run from the Command window:

    SQL:
    CREATE OR REPLACE PACKAGE foo as
      procedure bar;
    end foo;
    /
    
    CREATE OR REPLACE PACKAGE BODY foo as
      procedure bar
      is
      begin
        null;
      end bar;
    end foo;
    /
    
    edit foo

    the tab with the "foo" package specification and body is opened. If then in the SQL Window I put the code:

    Code:
    foo.bar

    and press Ctrl+Right mouse button, a new window with foo package body is opened. I would prefer to be redirected to the already opened tab with the specification and the body. Analogical situation occurs with the Ctrl+Left mouse button click. The existing behavior is acceptable if no Program window would be opened previously.

Lukasz
 
Last edited:
Back
Top