mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
16 lines
366 B
Lua
16 lines
366 B
Lua
ardour {
|
|
["type"] = "EditorAction",
|
|
name = "Action Test",
|
|
license = "MIT",
|
|
author = "Robin Gareus",
|
|
email = "robin@gareus.org",
|
|
site = "http://gareus.org",
|
|
description = [[ An Example Ardour Editor Action Plugin.]]
|
|
}
|
|
|
|
function factory (params)
|
|
return function ()
|
|
for n in pairs(_G) do print(n) end
|
|
print ("----")
|
|
end
|
|
end
|