class Pry::Command::FindMethod

def matched_method_lines(header, method)

def matched_method_lines(header, method)
  method.source.split(/\n/).select { |x| x =~ pattern }.join(
    "\n#{' ' * header.length}"
  )
end