We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Currently, irb supports 10 debugging commands that are powered by debug, which is a huge first-step improvement.
irb
debug
However, when users run those commands, they'll enter a new debug session and leave irb. This could be inconvenient because:
So it'd be amazing if we can let users run the same debugging commands, while letting them stay inside the current irb session.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description
Currently,
irb
supports 10 debugging commands that are powered bydebug
, which is a huge first-step improvement.However, when users run those commands, they'll enter a new
debug
session and leaveirb
. This could be inconvenient because:debug
doesn't support multi-line modedebug
doesn't have autocompletion yetirb
anddebug
has different commands or behaviourirb
sessionSo it'd be amazing if we can let users run the same debugging commands, while letting them stay inside the current
irb
session.The text was updated successfully, but these errors were encountered: