I have a Re-Frame project that I’m working on with shadow-cljs. When I start everything with clj -A:shadow-cljs watch main
it says, shadow-cljs - nREPL server started on port 3667
. Then I edit a source file and do :Connect
and provide port 3667. However, when I, for example, do cpp
on a function it get Fireplace: no default ClojureScript REPL
. What am I doing wrong?
@darrell I think this is what you want? or something nearby in the docs https://github.com/tpope/vim-fireplace/blob/master/doc/fireplace.txt#L31
or this? and a new kbd binding that uses it instead of CljEval maybe... https://github.com/tpope/vim-fireplace/blob/master/doc/fireplace.txt#L159
Shadow run from clj requires its middleware put into the nrepl server. Are you doing that?
@noisesmith I think the second worked. Thanks!