summaryrefslogtreecommitdiff
path: root/scripts/editor_test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/editor_test.lua')
-rw-r--r--scripts/editor_test.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/editor_test.lua b/scripts/editor_test.lua
new file mode 100644
index 0000000000..323d243d97
--- /dev/null
+++ b/scripts/editor_test.lua
@@ -0,0 +1,16 @@
+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