mirror of
https://github.com/ksyasuda/dotfiles.git
synced 2025-05-22 09:05:50 -07:00
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
|