mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-19 01:22:54 +00:00
By default, C++ auto completion will still be performed by the lexer-based logic. However, the parser-based logic can be switched on via the menubar.
12 lines
500 B
Text
12 lines
500 B
Text
endpoint LanguageServer = 8001
|
|
{
|
|
Greet() => (i32 client_id)
|
|
|
|
FileOpened(String file_name, IPC::File file) =|
|
|
FileEditInsertText(String file_name, String text, i32 start_line, i32 start_column) =|
|
|
FileEditRemoveText(String file_name, i32 start_line, i32 start_column, i32 end_line, i32 end_column) =|
|
|
SetFileContent(String file_name, String content) =|
|
|
|
|
AutoCompleteSuggestions(String file_name, i32 cursor_line, i32 cursor_column) =|
|
|
SetAutoCompleteMode(String mode) =|
|
|
}
|