10 lines
92 B
Lua
10 lines
92 B
Lua
|
local M = {}
|
||
|
|
||
|
function M.term_toggle(term)
|
||
|
if term then
|
||
|
term:toggle()
|
||
|
end
|
||
|
end
|
||
|
|
||
|
return M
|