summaryrefslogtreecommitdiff
path: root/scripts/editor_test.lua
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-11 14:36:57 +0200
committerRobin Gareus <robin@gareus.org>2016-04-11 14:36:57 +0200
commitbaf631961360b1158f25b743f0bedfa60bc428f4 (patch)
treecc5a714595ab06282d62656465b54567e02e02f2 /scripts/editor_test.lua
parentd21f20290515817cd7664301912184edb43c1845 (diff)
update and cleanup lua example scripts
Diffstat (limited to 'scripts/editor_test.lua')
-rw-r--r--scripts/editor_test.lua16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/editor_test.lua b/scripts/editor_test.lua
deleted file mode 100644
index 323d243d97..0000000000
--- a/scripts/editor_test.lua
+++ /dev/null
@@ -1,16 +0,0 @@
-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