From 61fcb7a627d6a417d70913cecb0fda17a181a49a Mon Sep 17 00:00:00 2001 From: "Gustavo \"Guz\" L de Mello" Date: Sat, 10 Jan 2026 10:01:05 -0300 Subject: [PATCH] fix: actually provide the start_editor_server method --- lua/godotdev/start_editor_server.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/godotdev/start_editor_server.lua b/lua/godotdev/start_editor_server.lua index f6bd08a..5fea30e 100644 --- a/lua/godotdev/start_editor_server.lua +++ b/lua/godotdev/start_editor_server.lua @@ -12,6 +12,8 @@ local function start_editor_server(pipe) vim.notify("Godot editor server started on " .. pipe, vim.log.levels.INFO) end +M.start_editor_server = start_editor_server + -- User command vim.api.nvim_create_user_command("GodotStartEditorServer", function(opts) start_editor_server(opts.args ~= "" and opts.args or nil)