Skip to content

Instantly share code, notes, and snippets.

@dlisboa
Created March 7, 2014 17:39
Show Gist options
  • Save dlisboa/9416144 to your computer and use it in GitHub Desktop.
Save dlisboa/9416144 to your computer and use it in GitHub Desktop.
require 'irb/completion'
def vi
require 'tempfile' unless defined? Tempfile
@f ||= Tempfile.new('irb-interactive')
system('vim', @f.path)
Object.class_eval File.read(@f.path) if $?.success?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment