pinnacle/pinnacle_api_lua/client.lua
2023-06-15 12:42:34 -05:00

15 lines
345 B
Lua

local M = {}
---Close a window.
---@param client_id integer? The id of the window you want closed, or nil to close the currently focused window, if any.
function M.close_window(client_id)
SendMsg({
Action = {
CloseWindow = {
client_id = client_id or "nil",
},
},
})
end
return M