You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Julia's REPL has a really nice feature: when you press the down key, if you just picked and executed a command in the history, it will select the following command in the history.
For example:
julia>1+12
julia>2+24
julia>3+36
julia>4+48
julia>2+2#<-- this command was selected in the history by type <up><up><up>4
julia>3+3#<-- this command was selected simply by typing <down>
Rationale: it's very common to want to execute several commands in a row from the history (perhaps skipping or editing a few of them). If these commands are far up in the history, then it's cumbersome to have to go back up for each one. Thanks to this "next command" feature, you only need to go back up once.
It's probably not very hard to implement, and it's a real pleasure to use. Why not in Roc's REPL?
The text was updated successfully, but these errors were encountered:
I'd be fine with that addition, we rely on rustyline for these things. Would you be willing to add an issue to rustyline for this? That way all projects relying on rustyline will be able to use this feature :)
Julia's REPL has a really nice feature: when you press the down key, if you just picked and executed a command in the history, it will select the following command in the history.
For example:
Rationale: it's very common to want to execute several commands in a row from the history (perhaps skipping or editing a few of them). If these commands are far up in the history, then it's cumbersome to have to go back up for each one. Thanks to this "next command" feature, you only need to go back up once.
It's probably not very hard to implement, and it's a real pleasure to use. Why not in Roc's REPL?
The text was updated successfully, but these errors were encountered: