You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have my splits around 120 columns each, so this is really not what I want: 120 columns pretty-printed isn't very…pretty. At least IMO.
It'd be nice to be able to disable the binding of *print-right-margin*, or set it at some fixed width in cider. Absent that, here's what I'm using:
; don't pprint wider than 80 columns, regardless of the width of the current split
(let ((-cider--pprint--orig (symbol-function'cider--nrepl-pprint-request-plist)))
(defuncider--nrepl-pprint-request-plist (right-margin&optionalpprint-fn)
(funcall -cider--pprint--orig 80 pprint-fn)))
(Go ahead, make fun of my elisp, I care not.)
The text was updated successfully, but these errors were encountered:
I have my splits around 120 columns each, so this is really not what I want: 120 columns pretty-printed isn't very…pretty. At least IMO.
It'd be nice to be able to disable the binding of
*print-right-margin*
, or set it at some fixed width in cider. Absent that, here's what I'm using:(Go ahead, make fun of my elisp, I care not.)
The text was updated successfully, but these errors were encountered: