cider

A channel dedicated to the Clojure Interactive Development Environment that Rocks (aka CIDER). :cider:
Quentin Le Guennec 2020-12-16T13:08:35.334Z

hello, can I run cider-inspector within a debug session in order to inspect eg, function parameters?

Quentin Le Guennec 2020-12-16T13:10:46.334500Z

(when I run cider-inspect-last-sexp, I get meta information about the function itself

bozhidar 2020-12-16T13:40:01.335300Z

@quentin.leguennec1 You can use inspect and inspect-prompt will in the debugger, to inspect arbitrary values.

Quentin Le Guennec 2020-12-16T13:42:30.335500Z

Okay, thanks.