fix: actually provide the start_editor_server method

This commit is contained in:
Guz
2026-01-10 10:01:05 -03:00
parent 568b6420e6
commit 61fcb7a627

View File

@@ -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)