blob: 1d63c9ed23244fbcd421b7e6e70d326a105aadb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
-- mod-version:1 -- lite-xl 2.00
local command = require "core.command"
local StatusView = require "core.statusview"
local visible = false
local funcs = {
[true] = StatusView.update,
[false] = function(self) self.size.y = 0 end,
}
function StatusView:update(...)
funcs[visible](self, ...)
end
command.add(nil, {
["hide-status:toggle"] = function() visible = not visible end,
["hide-status:hide"] = function() visible = false end,
["hide-status:show"] = function() visible = true end,
})
|