'(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))))