class PryByebug::ContinueCommand


Continue program execution until the next breakpoint

def process

def process
  PryByebug.check_file_context(target)
  breakpoints.add_file(current_file, args.first.to_i) if args.first
  breakout_navigation :continue
ensure
  Byebug.stop if Byebug.stoppable?
end