class Byebug::LocalInterface


Interface class for standard byebug use.

def close

def close
  History.save
end

def confirm(prompt)

def confirm(prompt)
  readline(prompt, false)
end

def initialize

def initialize
  super
  History.load
end

def puts(*args)

def puts(*args)
  STDOUT.puts(*args)
end

def read_command(prompt)

def read_command(prompt)
  readline(prompt, true)
end

def readline(prompt, hist)

def readline(prompt, hist)
  Readline.readline(prompt, hist)
rescue Interrupt
  puts '^C'
  retry
end