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
Hi, thanks for this library! I'm using it at https://babashka.org/xterm-sci/ to host a Clojure REPL.
In Clojure single quotes should not be balanced, but are treated as a way to mark forms as literal expressions instead of evaluating them.
E.g.:
'(+ 1 2 3)
means: I want the list (+ 1 2 3) and not the number 6.
Is it possible to opt out of the need that quotes need to be balanced before seeing the input that the user typed by providing our own function? I am handling the reading of incomplete output myself right now also for other cases (e.g. parens aren't balanced).
Hi, thanks for this library! I'm using it at https://babashka.org/xterm-sci/ to host a Clojure REPL.
In Clojure single quotes should not be balanced, but are treated as a way to mark forms as literal expressions instead of evaluating them.
E.g.:
means: I want the list
(+ 1 2 3)
and not the number6
.Is it possible to opt out of the need that quotes need to be balanced before seeing the input that the user typed by providing our own function? I am handling the reading of incomplete output myself right now also for other cases (e.g. parens aren't balanced).
The source code is at https://github.com/babashka/xterm-sci.
Fixed with PR #31.
The text was updated successfully, but these errors were encountered: