12 lines
231 B
Lua
12 lines
231 B
Lua
local plugin = {}
|
|
|
|
function testAction()
|
|
berry.ui.notify("I just ran the test action!")
|
|
end
|
|
|
|
function plugin.init()
|
|
berry.ui.createAction("test", testAction)
|
|
berry.ui.addBind("test", "ctrl+d", "Test")
|
|
end
|
|
|
|
return plugin |