"Go to symbol" doesn't find submethods

Issue #26 open
Simon Schneider created an issue

Given the following code structure:

procedure SomeProcedure;

  procedure SomeSubMethod;
  begin
  end;

begin
... do something
end;

The "go to symbol" function will find "SomeProcedure" but won't find "SomeSubMethod".

Comments (2)

  1. Christopher Wosinski repo owner

    The feature works as expected. Its purpose is to find the sections of a unit, its types, method implementations and method declarations without implementation.

    For now there are no plans to change the algorithm. But I keep this issue open as a feature request.

  2. Log in to comment