figwheel-main

figwheel-main http://figwheel.org
roti 2019-08-31T13:52:25.002600Z

what should [com.bhauman/rebel-readline-cljs "0.1.4"] provide? in my terminal, even the up and down arrow don't work...

practicalli-john 2019-09-02T17:33:16.003400Z

rebel readline does what it says on the video on the project home page. https://github.com/bhauman/rebel-readline In summary, add as an alias to the .clojure/deps.edn file in the root of your home directory

:aliases {:rebel {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.4"}}
                   :main-opts  ["-m" "rebel-readline.main"]}}
Then call that alias when running Clojure
clojure -A:rebel

👍 1
dominicm 2019-08-31T14:14:07.002900Z

You need to launch it with rebel itself