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

REPL variables *1 and friends get corrupted by argument lists #105

Closed
ska2342 opened this issue Sep 10, 2012 · 3 comments
Closed

REPL variables *1 and friends get corrupted by argument lists #105

ska2342 opened this issue Sep 10, 2012 · 3 comments
Milestone

Comments

@ska2342
Copy link
Contributor

ska2342 commented Sep 10, 2012

If you wait for the display of arglists (via eldoc) your magic REPL variables get corrupted:

user> (+ 4 5) ;; wait for eldoc
9
user> *2
([] [x] [x y] [x y & more])

versus

;; type fast
(+ 1 1)
2
user> (+ 4 5)
9
user> *2
2

Don't know whether this is nrepl.el-specific.

@kingtim
Copy link
Member

kingtim commented Sep 10, 2012

Hmm... In order to avoid this I think we are going to have to maintain a separate nREPL session for completion, et. al. so that the main session isn't affected by these.

@kingtim
Copy link
Member

kingtim commented Sep 11, 2012

I just pushed a new branch called tooling-session which uses a second client session for eldoc, completion, etc. calls.
@ska2342 would you mind trying it out when you get a moment?
It seemed to resolve the issue for me.

@kingtim
Copy link
Member

kingtim commented Sep 19, 2012

This is fixed on master now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants