Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0146-load_panes_from_previous_session
load_panes_from_previous_session = function()
	if Initial_load_filenames == nil then return end
	for _,filename in ipairs(Initial_load_filenames) do
		table.insert(Panes, new_pane())
		Current_pane_index = #Panes
		Current_pane = Panes[Current_pane_index]
		Current_pane.filename = filename
		one_time_load()
	end
end