From 4744152f86bd179e2fe5b6085715c23f857a5f36 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Mon, 30 Aug 2021 23:25:19 +0200 Subject: [PATCH] Add newline between subplots --- src/backends/unicodeplots.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/unicodeplots.jl b/src/backends/unicodeplots.jl index 62f4bc8e..8177f435 100644 --- a/src/backends/unicodeplots.jl +++ b/src/backends/unicodeplots.jl @@ -169,7 +169,7 @@ end function _show(io::IO, ::MIME"text/plain", plt::Plot{UnicodePlotsBackend}) unicodeplots_rebuild(plt) - foreach(x -> show(io, x), plt.o) + foreach(x -> (show(io, x); println(io)), plt.o) nothing end