Filtered code completion

Hi,

Would it be possible to have a “just your code” option on code completion ?

I have a model like

  IAtTime = public interface
    property Time:DateTime read;
    property WindSpeed:Double read;
    property WindDirection:Double read;
    property WindGust:Double read;

    property CurrentSpeed:Double read;
    property CurrentDirection:Double read;

    property Pressure:Double read;
    property CloudCover:Double read;

    property SwellHeight:Double read;
    property SwellDirection:Double read;

    property WaveHeight:Double read;
  end;

And in Toffee its showing

Im only really interested in whats in the interface.

Cheers,
John