This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-05-27
Channels
- # aws (7)
- # babashka (145)
- # beginners (83)
- # calva (18)
- # cider (11)
- # clara (9)
- # clj-kondo (59)
- # cljdoc (4)
- # cljs-dev (4)
- # cljsrn (11)
- # clojure (168)
- # clojure-australia (21)
- # clojure-dev (5)
- # clojure-europe (46)
- # clojure-italy (3)
- # clojure-nl (10)
- # clojure-taiwan (1)
- # clojure-uk (55)
- # clojurescript (85)
- # clojureverse-ops (1)
- # code-reviews (3)
- # conjure (22)
- # cursive (3)
- # datahike (3)
- # datomic (4)
- # emacs (5)
- # helix (20)
- # jackdaw (1)
- # jobs (2)
- # jobs-discuss (7)
- # lsp (1)
- # malli (5)
- # off-topic (85)
- # other-languages (4)
- # practicalli (4)
- # reitit (2)
- # releases (2)
- # sci (62)
- # shadow-cljs (181)
- # testing (5)
- # tools-deps (15)
- # xtdb (31)
Hey, I've got a shadow cljs project running to which I connected via cider-jack-in-cljs
this works fine so far (e.g. typing in the repl buffer (js/alert "hello")
works). But sending a Form to the repl with C-c C-e
does not work :thinking_face:. Do I need any special middleware for that? Or did I miss something else? Any pointers are greatly appreciated
my shadow-cljs.edn
;; shadow-cljs configuration
{:deps {:aliases [:dev :app]}
:nrepl {:port 9000}
:dev-http {8083 "public"}
:builds
{:app {:compiler-options {:output-feature-set :es8}
:target :browser
:modules {:main {:init-fn }}
:output-dir "public/js"
:asset-path "js"}}}
if you're using sesman you can have a look at the sesman-browser -> maybe your repl is not properly linked
yeah, try sesman-link-with-buffer
(I think)
for some reason cider-pprint-eval-last-sexp is no longer opening up a pop-up buffer with the results - is there a config var for this?