AbstractReadonlyidThe id of the plugin.
Static ReadonlychannelAbstractmodeThe mode property should return the syntax highlighting data for the Ace Editor mode, which includes information about keywords, operators, and other syntax elements.
This data is sent to the web plugin to enable proper syntax highlighting of code.
AbstractautocompleteThe autocomplete method should return a list of autocomplete suggestions based on the provided code and cursor position.
The current code in the editor.
The current row of the cursor in the editor (1-indexed)
The current column of the cursor in the editor (1-indexed)
A list of autocomplete entries relevant to the current cursor position in the code.
This plugin provides autocomplete suggestions and syntax highlighting.
It provides two channels: one for autocomplete requests and responses, and another for sending syntax highlighting information to the web plugin.