add/update lua scripts
[ardour.git] / scripts / editor_test.lua
1 ardour {
2         ["type"]    = "EditorAction",
3         name        = "Action Test",
4         license     = "MIT",
5         author      = "Robin Gareus",
6         email       = "robin@gareus.org",
7         site        = "http://gareus.org",
8         description = [[ An Example Ardour Editor Action Plugin.]]
9 }
10
11 function factory (params)
12         return function ()
13                 for n in pairs(_G) do print(n) end
14                 print ("----")
15         end
16 end