Is there an easy way to repeat a previous command in Ruby irb? I wish to have something like using exclamation mark (!) in Unix.
Thank you.
|
|
then you can use IRB.CurrentContext.io is like this below:
this Object save irb all io info, and with a line method to get every line you input. so, we can use eval to repeat last input. |
||||
|
|
Up arrow gets you history line by line. Pry has more goodies but I haven't tried it yet. |
|||||||||||||
|
|
Aside from pressing up arrow and enter, the Pry REPL let's you reply entire expressions (rather than just lines) using the see here:
You simply pass to For more info on the Alternatively, if you want to just replay individual lines of history, you can first view history using the
Alternatively, if you just want to replay the last line input, and you don't want to use |
||||
|
|
|
I don't think there's any kind of numbered history support (such as like Update Turns out I'm completely wrong, and Hooopo is right; you can access the history via the
will repeat the command. As Hooopo also says, wrapping this in a method works correctly:
then
|
|||||||||||
|
|
The irb REPL doesn't natively support history expansion, which is what you seem to be looking for. For a solid alternative, the pry REPL offers the replay command. |
|||
|
|
|
The quickest way to repeat (or modify) an earlier command that is more than just a couple of steps back in the history, is to search for it by typing Ctrl+R followed by some substring of the command in question. For more keyboard shortcuts provided by the GNU Readline library, look here. They are supported by many shells and other applications as well. |
|||||||||||
|
|
Somewhat related. In Example
This proved to be very useful for me, especially in |
|||
|
|