CompletionItemTag
Determines the tags for completion items in ScriptEditorService:RegisterAutocompleteCallback().
Items 11
History | Name | Value | Description | |
---|---|---|---|---|
545 | Deprecated | 1 | Indicates that the completion is deprecated, applying a penalty towards its score and crossing it out in the completion list. | |
545 | IncorrectIndexType | 2 | Indicates that the completion is a member and being accessed with the
wrong index type (e.g. using | |
545 | PluginPermissions | 3 | Indicates that the completion requires Plugin security level to access, hiding it if the client lacks this level. | |
545 | CommandLinePermissions | 4 | Indicates that the completion requires Command line security level to access, hiding it if the client lacks this level. | |
545 | RobloxPermissions | 5 | Indicates that the completion requires core script security level to access, hiding it if the client lacks this level. | |
545 | AddParens | 6 | Instructs the editor to add parentheses before the cursor after inserting the given completion, if accepted. | |
545 | PutCursorInParens | 7 | Instructs the editor to add parentheses before the cursor and move the cursor into the parentheses after inserting the given completion, if accepted. | |
545 | TypeCorrect | 8 | Indicates that the completion is type correct in the current context, granting a bonus to its score. | |
545 | ClientServerBoundaryViolation | 9 | Indicates that the completion is being accessed from the wrong side of the client/server boundary (e.g. Players.LocalPlayer in a server script), hiding it from the completion list. | |
589 | Invalidated | 10 | ||
589 | PutCursorBeforeEnd | 11 |
Removed items 2
History | Name | Value | |
---|---|---|---|
651 | ElideLeftOverride | 12 | |
651 | UseTextEditForAutocompleteScore | 13 |
Description
Determines the tags for completion items in ScriptEditorService:RegisterAutocompleteCallback().
History 16
- 651 Remove UseTextEditForAutocompleteScore
- 651 Remove ElideLeftOverride
- 648 Add UseTextEditForAutocompleteScore
- 648 Add ElideLeftOverride
- 589 Add PutCursorBeforeEnd
- 589 Add Invalidated
- 545 Add TypeCorrect
- 545 Add RobloxPermissions
- 545 Add PutCursorInParens
- 545 Add PluginPermissions
- 545 Add IncorrectIndexType
- 545 Add Deprecated
- 545 Add CommandLinePermissions
- 545 Add ClientServerBoundaryViolation
- 545 Add AddParens
- 545 Add CompletionItemTag