File tree Expand file tree Collapse file tree 7 files changed +150
-358
lines changed Expand file tree Collapse file tree 7 files changed +150
-358
lines changed Original file line number Diff line number Diff line change 3
3
## master (unreleased)
4
4
5
5
* [ #314 ] ( https://github.com/clojure-emacs/orchard/pull/314 ) : Print: add special printing rules for records and allow meta : type overrides.
6
- * [ #336 ] ( https://github.com/clojure-emacs/orchard/pull/336 ) : Inspector: tune pretty-printing mode.
7
6
* [ #337 ] ( https://github.com/clojure-emacs/orchard/pull/337 ) : Print: make orchard.print consistent with CIDER printing.
7
+ * [ #338 ] ( https://github.com/clojure-emacs/orchard/pull/337 ) : Print: reuse orchard.print in orchard.pp.
8
+ * [ #336 ] ( https://github.com/clojure-emacs/orchard/pull/336 ) : Inspector: tune pretty-printing mode.
8
9
9
10
## 0.34.0 (2025-04-18)
10
11
Original file line number Diff line number Diff line change 12
12
[clojure.core.protocols :refer [datafy nav]]
13
13
[clojure.string :as str]
14
14
[orchard.inspect.analytics :as analytics]
15
+ [orchard.pp :as pp]
15
16
[orchard.print :as print])
16
17
(:import
17
18
(java.lang.reflect Constructor Field Method Modifier)
57
58
of the inspector."
58
59
[{:keys [indentation pretty-print]} value]
59
60
(if pretty-print
60
- (print /pprint-str value {:indentation (or indentation 0 )})
61
+ (pp /pprint-str value {:indentation (or indentation 0 )})
61
62
(print/print-str value)))
62
63
63
64
(defn- array? [obj]
You can’t perform that action at this time.
0 commit comments