vote up 2 vote down star

When I use Merb's built in console, I get tab auto-completion similar to a standard bash prompt. I find this useful and would like to enable it in non-merb IRB sessions. How do I get auto-completion in IRB?

flag

69% accept rate

4 Answers

vote up 2 vote down check

Just drop require 'irb/completion' in your irbrc.

If that doesn't work try bond, http://tagaholic.me/bond/:

   require 'bond'; require 'bond/completion'

Bond not only improves irb's completion, http://tagaholic.me/2009/07/22/better-irb-completion-with-bond.html, but also offers an easy dsl for making custom autocompletions.

link|flag
vote up 0 vote down

Look here: irb auto-completion

link|flag
vote up 0 vote down

Check out this page for instructions

http://www.sufixo.com/raw/2006/05/29/tip_ruby_irb_auto-complete/

link|flag
vote up 0 vote down

This is just repeating the information on Cody Caughlan's comment above so it is easier to find:

either require 'irb/completion' or add the following to ~/.irbrc

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
link|flag
"the page above" is a little confusing, as the order of answers can be changed. You may wish to refer to answers by the author of those answers. – Andrew Grimm Sep 7 at 5:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.