From dbe445c279b036109e0f0b9443c2651c9fdf5a82 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 12 Sep 2025 23:49:40 -0500 Subject: [PATCH] fix(ci): undefined global --- lua/cp/window.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/cp/window.lua b/lua/cp/window.lua index 9882cb5..1b80f45 100644 --- a/lua/cp/window.lua +++ b/lua/cp/window.lua @@ -65,7 +65,7 @@ function M.restore_layout(state, tile_fn) if tile_fn then tile_fn(source_buf, input_buf, output_buf) else - default_tile(source_buf, input_buf, output_buf) + M.default_tile(source_buf, input_buf, output_buf) end else vim.cmd(state.layout)