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
In the 0.3.0 version some performance optimizations were added that caused the justified output to be completely missing when some lines in a map that is being justified don't fit inside of the width. The most obvious case is where a string is just too long to "fit", and that causes the map and possibly all of the output to be missing. For instance, the Clojure 1.8 definition of defn has a string in the map of metadata that is too big for pretty much any width, and so if you do:
(czprint-fndefn {:map {:justify?true}})
you will not get any output. The same thing happens when you say {:style :justified}.
The workaround is to not justify something, and this problem will not occur.
The text was updated successfully, but these errors were encountered:
In the
0.3.0
version some performance optimizations were added that caused the justified output to be completely missing when some lines in a map that is being justified don't fit inside of the width. The most obvious case is where a string is just too long to "fit", and that causes the map and possibly all of the output to be missing. For instance, the Clojure 1.8 definition ofdefn
has a string in the map of metadata that is too big for pretty much any width, and so if you do:you will not get any output. The same thing happens when you say
{:style :justified}
.The workaround is to not justify something, and this problem will not occur.
The text was updated successfully, but these errors were encountered: