-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more recent repl history globals #1341
Labels
Comments
That's by us ( Line 116 in 7c53a07
*1 , *2 and so on. Three should be enough I suppose?
|
|
PSA: I will grab this one, please let me know if you have any concern. |
jams2
added a commit
to jams2/ob-hy
that referenced
this issue
Jan 11, 2021
This doesn't seem to be documented, but as seen here hylang/hy#1341, we can access previous evaluation results in the hy repl with *i instead of _, and previous errors with *e.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Python and Hy have
_
bound to the last result in the repl. And I think that's it, or at least it's not easy to find documentation. But a good repl usually has more than this.IPython has
_
and also has__
and___
for the two results before that.Clojure calls them
*1
,*2
, and*3
. It also has*e
for the last exception.(Common Lisp has them too, but calls them
*
,**
, and***
, which wouldn't be compatible with Python.)Some repls also save the most recent input. IPython saves all inputs strings, but calls the last three
_i
,_ii
, and_iii
. (Common Lisp saves input forms and calls them+
,++
,+++
, again, not compatible.)Did we set up the
_
ourselves, or did that come with something else? If we did it, perhaps we could change it to be like Clojure with*1
,*2
,*3
and*e
.Hy's
eval
works on forms, not strings, so that's what the input globals should store. I'm not sure what to name them though. Clojure's basic repl doesn't seem to have that feature, but if there's some other standard, we should consider that.The text was updated successfully, but these errors were encountered: