LSP: Document editor settings

This commit is contained in:
HolonProduction 2026-02-17 12:29:27 +01:00
parent 43c9a32b3d
commit 9527a6e2f0
4 changed files with 43 additions and 11 deletions

View file

@ -42,10 +42,13 @@ class GDScriptLanguageServer : public EditorPlugin {
// There is no notification when the editor is initialized. We need to poll till we attempted to start the server.
bool start_attempted = false;
bool started = false;
// Defaults located in editor_settings.cpp
bool use_thread = false;
String host = "127.0.0.1";
int port = 6005;
int poll_limit_usec = 100000;
String host;
int port = 0;
int poll_limit_usec = 0;
static void thread_main(void *p_userdata);
private: