From ef200d6b3888ede14dd27961c08a273bf5fa68c2 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sun, 8 May 2022 20:04:22 +0200 Subject: [PATCH] Mention that the Godot editor must be running in connection error message --- src/godot-tools.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/godot-tools.ts b/src/godot-tools.ts index 48fabd5d0..af4a7188d 100644 --- a/src/godot-tools.ts +++ b/src/godot-tools.ts @@ -240,7 +240,7 @@ export class GodotTools { let host = get_configuration("gdscript_lsp_server_host", "localhost"); let port = get_configuration("gdscript_lsp_server_port", 6008); - let message = `Couldn't connect to the GDScript language server at ${host}:${port}`; + let message = `Couldn't connect to the GDScript language server at ${host}:${port}. Is the Godot editor running?`; vscode.window.showErrorMessage(message, 'Open Godot Editor', 'Retry', 'Ignore').then(item => { if (item == 'Retry') { this.reconnection_attempts = 0;