mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 09:31:34 +00:00
LSP: Fix repeated restart attempts
(cherry picked from commit 400c77f170)
This commit is contained in:
parent
2cb6d30dd1
commit
1aed7cefdd
2 changed files with 4 additions and 1 deletions
|
|
@ -41,6 +41,8 @@ class GDScriptLanguageServer : public EditorPlugin {
|
|||
|
||||
Thread thread;
|
||||
bool thread_running = false;
|
||||
// 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;
|
||||
bool use_thread = false;
|
||||
String host = "127.0.0.1";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue