From 4ce223e2f410a793bbef02748c09e92324637c7a Mon Sep 17 00:00:00 2001 From: sammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sat, 15 May 2021 22:25:29 -0400 Subject: [PATCH] fix: dont make continued input spaced out basically, if i had something like > here i want to \ complete it would return "here i want to complete" so now it doesnt anymore, if you want the space, do it manually --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index e0162d5..81131f9 100644 --- a/main.go +++ b/main.go @@ -174,7 +174,7 @@ func ContinuePrompt(prev string) (string, error) { } cont = strings.TrimSpace(cont) - return prev + " " + strings.TrimSuffix(cont, "\n"), nil + return prev + strings.TrimSuffix(cont, "\n"), nil } // This semi cursed function formats our prompt (obviously)