honeylisp/vendor/lite-plugins/plugins/hidestatus.lua
Jeremy Penner cb5132f393 git subrepo clone https://github.com/rxi/lite-plugins vendor/lite-plugins
subrepo:
  subdir:   "vendor/lite-plugins"
  merged:   "de4227d"
upstream:
  origin:   "https://github.com/rxi/lite-plugins"
  branch:   "master"
  commit:   "de4227d"
git-subrepo:
  version:  "0.4.2"
  origin:   "https://github.com/ingydotnet/git-subrepo"
  commit:   "65fde50"
2020-11-19 21:04:39 -05:00

19 lines
487 B
Lua

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,
})