A lightweight programming environment for desktop and mobile devices
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