Template repo for tiny cross-platform apps that can be modified on phone, tablet or computer.
filenames_from_all_panes = function()
	local result = {}
	for _,pane in ipairs(Panes) do
		if pane.filename then
			table.insert(result, pane.filename)
		end
	end
	return result
end