# File lib/pry/editor.rb, line 12
    def edit_tempfile_with_content(initial_content, line=1)
      temp_file do |f|
        f.puts(initial_content)
        f.flush
        f.close(false)
        invoke_editor(f.path, line, true)
        File.read(f.path)
      end
    end