Autocompletion results do not show when using self functions

Description:
The autocomplete menu does not show when using : to call functions from a module even when the functions exist & require self.

Module:

local Solar = {}

function Solar:GetService(Service: "CommandService" | "PluginService" | "ThemeService" | "AutocompleteService" | "NotificationService")
--// code here
end

return Solar

Autocompletion for .


Autocompletion for :

However it still works if you type it out manually:

And when you use . it shows the self argument:

Steps to reproduce:

  • Make a module script with a self function
  • Require the module script in another script
  • Attempt to view the autocompletion of the module script when typing module:

OS: Windows 10
CPU: Intel Core 2 Quad
Studio Version: 0.531.0.5310423

2 Likes

Thank you for the report, the correct call with ‘:’ will now show suggestions like it did before.

2 Likes

This topic was automatically closed after 10 hours. New replies are no longer allowed.