aboutsummaryrefslogtreecommitdiff
path: root/plugins/memoryusage.lua
diff options
context:
space:
mode:
authorjgmdev <jgmdev@gmail.com>2022-05-24 19:29:50 -0400
committerjgmdev <jgmdev@gmail.com>2022-05-24 19:29:50 -0400
commit35e947d1933613bb0b5a1488bf0fa4587f98ef7d (patch)
tree07d2515f44db03b1e865f6aef6adfd12b118890b /plugins/memoryusage.lua
parentc1f3671e2a8defbc67d1e77c72d5866f2825cdb5 (diff)
downloadlite-xl-plugins-35e947d1933613bb0b5a1488bf0fa4587f98ef7d.tar.gz
lite-xl-plugins-35e947d1933613bb0b5a1488bf0fa4587f98ef7d.zip
added config_spec and other plugin compatibility fixes.
Diffstat (limited to 'plugins/memoryusage.lua')
-rw-r--r--plugins/memoryusage.lua26
1 files changed, 26 insertions, 0 deletions
diff --git a/plugins/memoryusage.lua b/plugins/memoryusage.lua
index e06b883..a8b8005 100644
--- a/plugins/memoryusage.lua
+++ b/plugins/memoryusage.lua
@@ -1,9 +1,35 @@
-- mod-version:3 --lite-xl 2.1
-- original implementation by AqilCont
local core = require "core"
+local config = require "core.config"
+local common = require "core.common"
local style = require "core.style"
local StatusView = require "core.statusview"
+config.plugins.memoryusage = common.merge({
+ enabled = true,
+ -- The config specification used by the settings gui
+ config_spec = {
+ name = "Memory Usage",
+ {
+ label = "Enabled",
+ description = "Show or hide the lua memory usage from the status bar.",
+ path = "enabled",
+ type = "toggle",
+ default = true,
+ on_apply = function(enabled)
+ core.add_thread(function()
+ if enabled then
+ core.status_view:get_item("status:memory-usage"):show()
+ else
+ core.status_view:get_item("status:memory-usage"):hide()
+ end
+ end)
+ end
+ }
+ }
+}, config.plugins.memoryusage)
+
core.status_view:add_item(
nil,
"status:memory-usage",