Fork me on GitHub
#cider
<
2017-05-16
>
xiongtx03:05:31

cider-eval-last-sexp in a cljs buffer always returns nil in case of exception, with the ST only in the REPL buffer. Is this expected behavior?

xiongtx03:05:45

I.e. there's no pop-up buffer containing an exception like w/ clj

jfntn03:05:43

Has anyone noticed that if there’s an error with cider-load-buffer with the popup enabled and jump to error disabled, you’ll end up at a different place in the buffer after quitting the popup?

richiardiandrea04:05:21

Both the ☝️ are new to me, probably worth a cider issue. Thanks for reporting!

kiemdoder07:05:39

does cider debugging work in macros as well?

stardiviner07:05:43

How to limit CIDER output? I found Clojure Incanter read-dataset will print the data. It is very big. So how to configure CIDER to limit its output size?

pkova07:05:06

(set! *print-length* n)

pkova07:05:02

there's also *print-level*

stardiviner07:05:08

@pkova Should I set it in Leiningen? which section should I set?

pkova07:05:26

stardiviner: I've only ever set those vars at the repl

pkova07:05:46

I think you can use leiningens :repl-options though

stardiviner07:05:52

I see. Thanks