Service Autocomplete (code completions)

Maybe look to see how sleitnick solved the problem with his module autocomplete plugin?

The difference is hes replacing what the user inputs so for example :TestMod becomes local TestModule = require(…TestModule) etc my plugin isn’t doing this.

Also his plugin isn’t inserting any new lines which I believe is the reason my plugin is broke at the moment.

I’m gonna give it until next wednesdays update and take it from there. But as far as im concerned the problem my plugin is facing is a script error bug where for some reason inserting a new line is now making the auto complete prompt appear at the beginning of the script.

If u press tab to insert the plugin will work perfectly at the moment.

1 Like

Fixed the plugin :tada: consider enabling auto update for the future

Also fixed a bug where the plugin wouldn’t insert into the correct position

Added support for inserting based on the length of the service as requested by @SomeFedoraGuy:

Change how the plugin inserts new services by running Shared.ServiceSortType()

only two modes supported right now
Shared.ServiceSortType(“Alphabetical”)
Shared.ServiceSortType(“Length”)
these functions only need to be run once and will be saved to the local machine for future use.

Link to the github: GitHub - Baileyeatspizza/Service-Autocomplete: Roblox studio port of service autocompletion roblox LSP provides

3 Likes

Great update, thanks!

What I originally asked for would be a “LengthInversed” here, which, in your screenshot, would start at and “ServerScriptService” end at “Teams”.

1 Like

Ahh that makes a lot more sense lol

Here you go:

Just quickly update the plugin

1 Like

It would be good when you press enter it doesnt go on the top of all statements by its own.
And please fix when i typed for Example Replicated and I press enter
It should delete the keyword I wrote already and replace with the autocompleted line.

1 Like

This solves the issue of breaking my freaking fingers to define many services

One suggestion is that when you hit Enter, the keyword should be instantly removed as you hit Enter, so I don’t have to manually edit it


Here is the video of the issue, or create a setting to disable it

I know @Grip_All already explained it but I’m explaining it better

ah thanks a few people have said this but I wasn’t sure what they were referring to.

I am not going to implement this the plugin was designed to add services as ur writing code for example in the code below replicated storage will be added to the top of the script when its autocompleted

local part = ReplicatedStorage.SomePart

What you guys want is just the services defined but there’s some edge cases which won’t allow this to be implemented without problems

For example I write out ContentProvider:PreloadAsync() all on a new line however, if “ContentProvider” is removed the code ends up being :PreloadAsync() which is not what the user intended

Sorry, but for that reason the feature will not be added (if u find urself repeating the same service definitions in every script make a template to avoid editing the services)

1 Like

I have an idea, Why not add an setting, which defaults to how it works now, in case if someone gets annoyed by that, then they can disable the setting, also sometimes you can forget that you made a template, and some people like I are uncomfortable with templates

hey Ive just found out that your plugin doesnt have auto completion for MemoryStoreService…

Is there a way to access the services with a period instead of GetService()?

This is literally bad practice why would it be implemented

4 Likes

Do some research and come back.

sorry if ur having difficulties with the plugin it detects the services currently present in ur studio instance which works great for most cases

but some services (maybe MemoryStoreService) aren’t present in studio by default and become available when GetService is used to request them…

I’ll add a hardcoded list of services to the plugin in the next update that’ll fix it :tada: shoulda been added before but I forgot thanks for the reminder

2 Likes

Going to do a quick update to the plugin in the next week to fix some long standing bugs that keep occurring.

Feel free to post any bugs below and I’ll look into them.

On a good note its been over a year with no roblox changes breaking this plugin.

Ok I’ve done this I’m going to keep testing it out for a few more days to make sure I haven’t missed anything then I’ll update the plugin.

The main goals for this change are to:

  • 1: Stop plugin from basing autocomplete on an existing service that is not at the top of the script.
  • 2: Lower risk of auto complete accidently breaking your existing code (mainly caused by the case above)
  • 3: Add in a table of known services because if you didn’t know already some services only appear once you use :GetService() on them a good example of this is “Teams” or “MemoryStoreService”

But give a few days to make sure no side effects appear as a result.

Is there anyway for this to be in camelCase or snake-case?

What for? Any roblox service is a class (singleton). And any class should be written in the PascalCase format.

idrk, i like my code in camel case :(.

For the time being, I’d use SimpleComplete. It has more features, global settings (every setting is configured through the command line, so there’s no bloat to the plugin toolbar. I hope more plugin developers start doing this.), and (comedic timing considering you asked for this) although it cannot yet, the creator expressed that he might add a setting to change the cases that services are defined with in the near future.

2 Likes