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