summaryrefslogtreecommitdiff
path: root/share/scripts/_rewind.lua
diff options
context:
space:
mode:
Diffstat (limited to 'share/scripts/_rewind.lua')
-rw-r--r--share/scripts/_rewind.lua12
1 files changed, 12 insertions, 0 deletions
diff --git a/share/scripts/_rewind.lua b/share/scripts/_rewind.lua
new file mode 100644
index 0000000000..88e150612c
--- /dev/null
+++ b/share/scripts/_rewind.lua
@@ -0,0 +1,12 @@
+ardour {
+ ["type"] = "EditorAction",
+ name = "Rewind",
+ author = "Ardour Lua Task Force",
+ description = [[An Example Ardour Editor Action Script.]]
+}
+
+function factory (params)
+ return function ()
+ Session:goto_start()
+ end
+end