nrepl

Sam Ritchie 2021-11-18T13:40:14.009300Z

Hey all! Question… is there some way to prevent cider-nrepl from installing the print-method implementations in this file? https://github.com/clojure-emacs/cider-nrepl/blob/master/src/cider/nrepl/print_method.clj#L1

vemv 2021-12-14T08:30:48.010500Z

Feel free to promote your question to an issue (further context also appreciated)

Sam Ritchie 2021-11-18T13:40:26.009800Z

I am trying to provide my own and cider-nrepl always wins the race

vemv 2021-12-14T08:31:30.010700Z

Have you tried performing your own after a require cider.nrepl.print-method ?

Sam Ritchie 2021-12-14T12:41:12.012100Z

Yup, it works then but I could not find a reliable place to put it that would guarantee that mine would get evaluated after without manually executing the form

vemv 2021-12-14T12:48:17.012300Z

user.clj might work, it has the semantic that it gets loaded automatically / before many things I don't recommend abusing those semantics much but I think this is pretty risk-free