Hello Clojurains! Calva’s Getting Started with ClojureScript story just improved massively. With v2.0.187
this arrived: https://github.com/BetterThanTomorrow/calva/issues/1114, which makes the process to get an app with an editor connected ClojureScript REPL running a matter of:
1. Create the small directory structure that the ClojureScript Quick Start tells you to create
2. Jack-in
Boom!
Awesome!
This was entirely doable before, but it had the user to first create a custom ClojureScript REPL setting in VS Code, which is not all that straight forward for most people, and also an odd requirement for the most vanilla ClojureScript REPL. 😃
Here’s the change log for the last couple of weeks for your convenience: [2.0.187] - 2021-04-11 • https://github.com/BetterThanTomorrow/calva/issues/1114 • https://github.com/BetterThanTomorrow/calva/issues/1117 [2.0.186] - 2021-04-10 • https://github.com/BetterThanTomorrow/calva/issues/1023 • https://github.com/BetterThanTomorrow/calva/issues/1111 • https://github.com/BetterThanTomorrow/calva/issues/1112 • Fix: https://github.com/BetterThanTomorrow/calva/issues/1105 • https://github.com/BetterThanTomorrow/calva/issues/1067 • Bump `clojure-lsp` to https://github.com/clojure-lsp/clojure-lsp/releases/tag/2021.04.07-16.34.10 • Bump `cider-nrepl` to https://github.com/clojure-emacs/cider-nrepl/blob/master/CHANGELOG.md#02510-2021-04-08 [2.0.185] - 2021-04-05 • Fix: https://github.com/BetterThanTomorrow/calva/issues/1098 • Fix: https://github.com/BetterThanTomorrow/calva/issues/1079 • Add experimental setting to: https://github.com/BetterThanTomorrow/calva/issues/650 • Bump `clojure-lsp` to `2021.04.03-18.43.55` [2.0.184] - 2021-04-02 • Fix: https://github.com/BetterThanTomorrow/calva/issues/1086 • Fix: https://github.com/BetterThanTomorrow/calva/issues/1060 • https://github.com/BetterThanTomorrow/calva/issues/1088 and bump to `2021.03.30-20.42.34` • https://github.com/BetterThanTomorrow/calva/issues/1091 [2.0.183] - 2021-03-30 • https://github.com/BetterThanTomorrow/calva/issues/978 • Fix: https://github.com/BetterThanTomorrow/calva/issues/1083 [2.0.182] - 2021-03-26 • https://github.com/BetterThanTomorrow/calva/issues/1017
practicalli/clojure-deps-edn user wide configuration for Clojure CLI tools Add aliases for more REPL options, with nREPL server for the built-in terminal UI and nREPL client connections with simple and Rebel enhanced terminal UI. Separated REPL into REPL terminal UI, REPL with Editor and Remote REPL connection New aliases: • :repl/nrepl - Clojure REPL with nREPL server • :repl/cider - Clojure REPL with nREPL server and Cider-nrepl (code completion, pretty print, etc.) • :repl/cider-refactor - as above with clj-refactor • :repl/remote - simple terminal UI nREPL client for a remote REPL • :repl/rebel-remote - as above with Rebel Readline UI https://github.com/practicalli/clojure-deps-edn/
You have :repl/cider
in there twice?
Ooops, so I did. Fixed it to cider-refactor. Thanks.