Tab-completion in IRB 37
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.