Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0111-populate_missing_handlers
populate_missing_handlers = function()
	for handler_name in pairs(love.handlers) do
		if on[handler_name] == nil then
			-- make it available to scripts
			on[handler_name] = function(...)
				if not Show_code then
					if car[handler_name] then
						call_protected(car[handler_name], ...)
					end
				end
			end
		end
	end
end