What's the status of using rebel-readline as a library? I know bb now uses it internally, but perhaps not everything necessary is available? I'm getting Unable to resolve classname: org.jline.reader.impl.DefaultParser
bb doesn't use it internally :) but: I'm working on successive PRs to make it compatible. the first one is compliment, the completion lib
do you want to use it as an nrepl client?
I want to build a command line REPL for a custom DSL
you can probably already do so by using jline directly, but I understand that using rebel-readline makes it easier
if you look at babashka/src/babashka/impl/repl.clj then you can get some ideas on how to build a repl.
you can use clojure.main/repl with its hooks
thanks! I can work with that.