cider 2024-09-30

'(cider-clojurec-eval-destination 'multi) is great. except when it's not. Is there an easy way to toggle it? or should I roll my own function?

nice! thanks for sharing yuhan!

I have a small helper function for this:

(defun +cider-choose-cljc ()
  (interactive)
  (setq-local cider-clojurec-eval-destination
              (intern (completing-read "CLJC eval destination:" '(clj cljs multi)
                                       nil 'require-match))))

.dir-locals is a good place to start

👍 2