Skip to content
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

Closed
gilch opened this issue Jul 25, 2017 · 3 comments
Closed

Add more recent repl history globals #1341

gilch opened this issue Jul 25, 2017 · 3 comments
Labels

Comments

@gilch
Copy link
Member

gilch commented Jul 25, 2017

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.

@tuturto
Copy link
Contributor

tuturto commented Aug 2, 2017

That's by us (

self.locals['_'] = value
for relevant spot). I like the idea of *1, *2 and so on. Three should be enough I suppose?

@gilch gilch mentioned this issue Nov 16, 2017
9 tasks
@Kodiologist
Copy link
Member

_ is now *1 as of #1517.

@gilch gilch added the feature label Mar 23, 2018
@waigx
Copy link
Contributor

waigx commented Mar 30, 2018

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
Labels
Projects
None yet
Development

No branches or pull requests

4 participants