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