diff options
Diffstat (limited to 'lib/irb.rb')
-rw-r--r-- | lib/irb.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/irb.rb b/lib/irb.rb index 661c550486..c22e6db03b 100644 --- a/lib/irb.rb +++ b/lib/irb.rb @@ -72,6 +72,8 @@ require_relative "irb/easter-egg" # --nosingleline Don't use singleline editor module # --colorize Use colorization # --nocolorize Don't use colorization +# --autocomplete Use autocompletion +# --noautocomplete Don't use autocompletion # --prompt prompt-mode/--prompt-mode prompt-mode # Switch prompt mode. Pre-defined prompt modes are # `default', `simple', `xmp' and `inf-ruby' @@ -114,6 +116,7 @@ require_relative "irb/easter-egg" # IRB.conf[:USE_SINGLELINE] = nil # IRB.conf[:USE_COLORIZE] = true # IRB.conf[:USE_TRACER] = false +# IRB.conf[:USE_AUTOCOMPLETE] = true # IRB.conf[:IGNORE_SIGINT] = true # IRB.conf[:IGNORE_EOF] = false # IRB.conf[:PROMPT_MODE] = :DEFAULT |