2025-10-27 13:09:10 +11:00
|
|
|
local plugin = {}
|
|
|
|
|
|
2025-10-27 18:43:34 +11:00
|
|
|
function testAction()
|
2025-10-27 20:18:24 +11:00
|
|
|
local window = berry.ui.createWindow("test window")
|
2025-10-27 18:43:34 +11:00
|
|
|
end
|
|
|
|
|
|
2025-10-27 13:09:10 +11:00
|
|
|
function plugin.init()
|
2025-10-27 18:43:34 +11:00
|
|
|
berry.ui.createAction("test", testAction)
|
|
|
|
|
berry.ui.addBind("test", "ctrl+d", "Test")
|
2025-10-27 13:09:10 +11:00
|
|
|
end
|
|
|
|
|
|
2025-10-27 15:57:34 +11:00
|
|
|
return plugin
|