summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-02-25 17:13:04 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2016-02-26 01:00:55 +0200
commit9a66eb660d2488f83d3acca5e3278e7b3fcf1161 (patch)
tree0f5a5749321fe201e1f02c97d263e0e131bd503e /README.md
parentc38839af8ff15204562c8246b571beb5fd8cc440 (diff)
Set cider-pprint-fn to pprint by default
We've encountered some issues with fipp and pprint seems like a safer default for now.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 1c552b9d..fe050da8 100644
--- a/README.md
+++ b/README.md
@@ -1322,7 +1322,9 @@ Completion annotations can be disabled by setting
You can configure the function used by CIDER for pretty-printing evaluation
results and other data using the `cider-pprint-fn` option.
-This can be one of three values (defaults to `fipp`):
+This can be one of three values (defaults to `pprint`):
+
+- `pprint` to use the built-in `clojure.pprint/pprint`.
- `fipp` to use the
[Fast Idiomatic Pretty-Printer](https://github.com/brandonbloom/fipp). This is
@@ -1333,8 +1335,6 @@ This can be one of three values (defaults to `fipp`):
[canonical serialization](https://github.com/greglook/puget#canonical-representation)
of data, at a slight performance cost.
-- `pprint` to use the built-in `clojure.pprint/pprint`.
-
Alternatively, `cider-pprint-fn` can be set to the namespace-qualified name of a
Clojure function that takes a single argument and will pretty-print the value of
said argument to `*out*`.