'How to disable Pry autocomplete?

I would like to disable autocomplete in Pry. How to do it?

I'm using it in Rails console(from Emacs/inf-ruby) and it is very slow and annoying in my legacy app.

Related question: Disable irb autocomplete



Solution 1:[1]

Add the following line to your .pryrc config file:

Pry.config.completer = nil

Default value is Pry::InputCompleter

Or you can just launch your console with --noautocomplete option.

Source @ github.com

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1