figwheel-main

figwheel-main http://figwheel.org
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👍