mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:14:58 +00:00
13 lines
570 B
Text
13 lines
570 B
Text
endpoint LanguageServer
|
|
{
|
|
Greet(String project_root) => ()
|
|
|
|
FileOpened(String filename, IPC::File file) =|
|
|
FileEditInsertText(String filename, String text, i32 start_line, i32 start_column) =|
|
|
FileEditRemoveText(String filename, i32 start_line, i32 start_column, i32 end_line, i32 end_column) =|
|
|
SetFileContent(String filename, String content) =|
|
|
|
|
AutoCompleteSuggestions(GUI::AutocompleteProvider::ProjectLocation location) =|
|
|
SetAutoCompleteMode(String mode) =|
|
|
FindDeclaration(GUI::AutocompleteProvider::ProjectLocation location) =|
|
|
}
|