10 lines
92 B
Lua
Raw Normal View History

2025-02-19 02:24:24 -08:00
local M = {}
function M.term_toggle(term)
if term then
term:toggle()
end
end
return M