aboutsummaryrefslogtreecommitdiff
path: root/plugins/hidestatus.lua
blob: 6e63a8114f1e4ddd7716c5ffa74d625484dfde95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- mod-version:2 -- lite-xl 2.0
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,
})