2025-02-19 02:24:24 -08:00

10 lines
92 B
Lua

local M = {}
function M.term_toggle(term)
if term then
term:toggle()
end
end
return M