Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0014-on.text_input
on.text_input = function(t)
	if Show_code then
		if Show_file_dialog then
			text_input_on_file_dialog(t)
		elseif Current_pane.editor_state.cursor_x then
			edit.text_input(Current_pane.editor_state, t)
		end
	else
		if car.text_input then
			call_protected(car.text_input, t)
		end
		if car.textinput then
			call_protected(car.textinput, t)
		end
	end
end