Add IRB fix command to rerun with corrected spelling (fixes #179)#203
Closed
krsinghshubham wants to merge 2 commits intoruby:masterfrom
Closed
Add IRB fix command to rerun with corrected spelling (fixes #179)#203krsinghshubham wants to merge 2 commits intoruby:masterfrom
fix command to rerun with corrected spelling (fixes #179)#203krsinghshubham wants to merge 2 commits intoruby:masterfrom
Conversation
- Show 'Type `fix` to rerun with the correction.' when fix is available - Add dym alias for users who use fix as a variable - Document naming conflict and dym alternative in README Co-authored-by: Cursor <cursoragent@cursor.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the feature requested in #179: when using IRB, after a typo triggers a "Did you mean?" error, users can type
fixto rerun the previous command with the suggested correction applied. This is similar to thefuck.Example
Implementation Details
Architecture
lib/did_you_mean/irb.rb– Core module withLastError,FixCommand, andMAX_EDIT_DISTANCE = 2lib/did_you_mean/irb/eval_patch.rb– PatchesIRB::Irb#eval_inputto capture correctable exceptionslib/did_you_mean/irb/command.rb– Registers thefixcommand with IRBSupported Error Types
NoMethodError, NameError, KeyError, NoMatchingPatternKeyError, LoadError
Correction Logic
Changes
lib/did_you_mean/irb.rb,eval_patch.rb,command.rblib/did_you_mean.rb– auto-requires IRB extensionREADME.md– documentationFixes #179