We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Repro
lein new app shopping-list
Add the following code to "src/shopping_list/core.clj"
(defn prompt "get information from the user" [msg] (println msg) (read-line))
Jack-in to the project and load the file above ctrl+alt+c enter
ctrl+alt+c enter
Evaluate (prompt "What is my name") in the Calva REPL
(prompt "What is my name")
Calva REPL becomes unresponsive
lein repl :connect
All is well. Input is entered at the REPL successfully
The text was updated successfully, but these errors were encountered:
Thanks. This should be fixed, even if I right now have no clue how to do it. If anyone else has a clue, I'd welcome help here!
Sorry, something went wrong.
Got this from @bbatsov :
There’s a stdin message that gets sent when the REPL is waiting for input. See https://nrepl.org/nrepl/0.6.0/ops.html#_stdin
This is fixes in Version 2.0.55.
No branches or pull requests
Repro
lein new app shopping-list
Add the following code to "src/shopping_list/core.clj"
Jack-in to the project and load the file above
ctrl+alt+c enter
Evaluate
(prompt "What is my name")
in the Calva REPLCalva REPL becomes unresponsive
lein repl :connect
(prompt "What is my name")
in the terminal.All is well. Input is entered at the REPL successfully
The text was updated successfully, but these errors were encountered: