From 5afd227aa23b4ef212cd65d023583fc5fa55c5a3 Mon Sep 17 00:00:00 2001 From: raziman Date: Wed, 17 Feb 2021 21:41:48 +0800 Subject: [PATCH] add extra newline in repl for readability --- popup.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/popup.go b/popup.go index a856f3d..35723b1 100644 --- a/popup.go +++ b/popup.go @@ -635,12 +635,12 @@ func replPopup() { res, err := gomu.anko.Execute(text) if err != nil { - fmt.Fprintf(textview, "%s%s\n%v\n", prompt, text, err) + fmt.Fprintf(textview, "%s%s\n%v\n\n", prompt, text, err) return nil } if res != nil { - fmt.Fprintf(textview, "%s%s\n%v\n", prompt, text, res) + fmt.Fprintf(textview, "%s%s\n%v\n\n", prompt, text, res) } }