Is there a way to customize the help system in Pry?
What I want is to display description from my custom commands. Right now all of the Pry help documentation is printed when help
is entered in the REPL.
For example:
Current help output:
Help
help Show a list of commands or information about a specific command
Context
cd Move into a new context (object or scope).
find-method Recursively search for a method within a Class/Module or the current namespace.
ls Show the list of vars and methods in the current scope.
etc...
What I would like is to remove the Pry help listings:
Commands
my-custom-command description
my-custom-command2 description
etc...