summaryrefslogtreecommitdiff
path: root/scripts/_rewind.lua
blob: 88e150612c93fe49e45058595558ae3759c4cef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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