Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0101-on.mouse_wheel_move
on.mouse_wheel_move = function(dx,dy)
	if not Show_code then
		if car.mouse_wheel_move then
			call_protected(car.mouse_wheel_move, dx,dy)
		end
		if car.wheelmoved then
			call_protected(car.wheelmoved, dx,dy)
		end
	else
		if App.mouse_y() < Current_pane.editor_state.bottom then
			edit.mouse_wheel_move(Current_pane.editor_state, dx,dy)
		else
			edit.mouse_wheel_move(Output_editor_state, dx,dy)
		end
	end
end