summaryrefslogtreecommitdiff
path: root/scripts/editor_test.lua
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-23 15:44:41 +0100
committerRobin Gareus <robin@gareus.org>2016-02-23 15:44:41 +0100
commit1473c2d36460707f6484fe5a0f1d913fbb8a77e0 (patch)
tree407cb23481530549e333fcc4fce8959f7d314a15 /scripts/editor_test.lua
parent942471d21f0acbb833849873bba2eb8254c4d28d (diff)
Add some lua scripts
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