Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uses {{not existing or custom user module}} breaks intellisence in such a way no custom user procedures or functions are suggested #73

Open
EmilyGraceSeville7cf opened this issue Apr 19, 2024 · 0 comments

Comments

@EmilyGraceSeville7cf
Copy link

EmilyGraceSeville7cf commented Apr 19, 2024

program intellisence_test;
uses crt, non_existent;

type // keyword type is not suggested anywhere 
  TSampleAlias = integer; // TSampleAlias is not suggested anywhere
  TSampleRecord = record // TSampleRecord is not suggested anywhere
    sample_field: integer;
  end;

const
  sample_constant = 1; // constant sample_constant is not suggested anywhere 

var
  sample_variable: integer; // variable sample_variable is not suggested anywhere 

procedure sample_procedure(sample_parameter: integer);
begin
  // sample_parameter is not suggested anywhere
end;

function sample_function(sample_parameter: integer): integer;
begin
  // sample_parameter is not suggested anywhere
end;


begin
  readln;
end.

Just standard procedures and functions are shown in suggestions here due to using not existing module.

@EmilyGraceSeville7cf EmilyGraceSeville7cf changed the title uses {{not existing module}} breaks intelligence in such a way no custom user procedures or functions are suggested uses {{not existing module}} breaks intellisence in such a way no custom user procedures or functions are suggested Apr 19, 2024
@EmilyGraceSeville7cf EmilyGraceSeville7cf changed the title uses {{not existing module}} breaks intellisence in such a way no custom user procedures or functions are suggested uses {{not existing or custom user module}} breaks intellisence in such a way no custom user procedures or functions are suggested Apr 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant