class Byebug::History

def restore


Restores history from disk.
def restore
  return unless File.exist?(Setting[:histfile])
  File.readlines(Setting[:histfile]).reverse.each { |l| push(l.chomp) }
end