Closed gfredericks closed 10 years ago
The plugin hardcodes the call to puget.printer/cprint-str, which turns coloring on even if the :puget-options in the profile have :print-color false.
puget.printer/cprint-str
:puget-options
:print-color false
Would it be reasonable to start using pprint-str instead, and maybe change the default value in puget.printer/*options* to :print-color true?
pprint-str
puget.printer/*options*
:print-color true
Hmm, good catch. I don't want to change the default in puget, but it should be possible to set a default value for whidbey and change the function to pprint-str.
Released 0.3.3 with the new functionality.
The plugin hardcodes the call to
puget.printer/cprint-str
, which turns coloring on even if the:puget-options
in the profile have:print-color false
.Would it be reasonable to start using
pprint-str
instead, and maybe change the default value inpuget.printer/*options*
to:print-color true
?