File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -78,6 +78,11 @@ The max depth can be also changed interactively within the inspector."
78
78
:type 'boolean
79
79
:package-version '(cider . " 0.15.0" ))
80
80
81
+ (defcustom cider-inspector-pretty-print nil
82
+ " When true, pretty print values in the inspector."
83
+ :type 'boolean
84
+ :package-version '(cider . " 1.18.0" ))
85
+
81
86
(defcustom cider-inspector-skip-uninteresting t
82
87
" Controls whether to skip over uninteresting values in the inspector.
83
88
Only applies to navigation with `cider-inspector-prev-inspectable-object'
@@ -518,7 +523,9 @@ MAX-COLL-SIZE if non nil."
518
523
,@(when cider-inspector-max-nested-depth
519
524
`(" max-nested-depth" , cider-inspector-max-nested-depth ))
520
525
,@(when cider-inspector-display-analytics-hint
521
- `(" display-analytics-hint" " true" ))))
526
+ `(" display-analytics-hint" " true" ))
527
+ ,@(when cider-inspector-pretty-print
528
+ `(" pretty-print" " true" ))))
522
529
(cider-nrepl-send-sync-request (cider-current-repl))))
523
530
524
531
(declare-function cider-set-buffer-ns " cider-mode" )
You can’t perform that action at this time.
0 commit comments