Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

0126-one_time_save
one_time_save = function()
	print('saving to '..Current_pane.filename)
	local dir = Current_pane.is_stash and Stash_directory or Directory
	Current_pane.editor_state.filename = dir..Current_pane.filename
	save_to_disk(Current_pane.editor_state)
	-- Don't autosave yet; undo isn't accessible in mobile devices.
	Current_pane.editor_state.filename = nil
end