Created
May 11, 2018 03:27
-
-
Save mpilquist/a1d10d01174a2fd9037f0e2fe7b72b9f to your computer and use it in GitHub Desktop.
IO Sparkles!
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import $ivy.`org.typelevel::cats-effect:0.10-22efb61` | |
def disablePrettyPrintIO = repl.pprinter.update(repl.pprinter().copy(additionalHandlers = { | |
case io: cats.effect.IO[_] => pprint.Tree.Literal("✨✨✨") | |
})) | |
disablePrettyPrintIO | |
def enablePrettyPrintIO = repl.pprinter.update(repl.pprinter().copy(additionalHandlers = PartialFunction.empty)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment