Tab-completion in IRB 37

Posted by Jason Yanowitz Tue, 15 Aug 2006 15:34:00 GMT

I came across this while poking around programming is hard which led me to the rails wiki

Make this your ~/.irbrc and enjoy tab completion:

IRB.conf[:AUTO_INDENT] = true
IRB.conf[:USE_READLINE] = true
IRB.conf[:LOAD_MODULES] = [] unless
IRB.conf.key?(:LOAD_MODULES)
unless IRB.conf[:LOAD_MODULES].include?(‘irb/completion’)
  IRB.conf[:LOAD_MODULES] << ‘irb/completion’
end

Aaah. Sweet, sweet laziness.