From cfdab006842f50ed2e7e65b03b490a5cf1247213 Mon Sep 17 00:00:00 2001 From: TorchedSammy <38820196+TorchedSammy@users.noreply.github.com> Date: Sun, 4 Apr 2021 18:43:55 -0400 Subject: [PATCH] fix: make shell continue prompt "sh> " --- shell.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.go b/shell.go index 1258956..cbcf1a1 100644 --- a/shell.go +++ b/shell.go @@ -106,7 +106,7 @@ func StartMultiline(prev string, sb *strings.Builder) bool { // save input from previous prompts if sb.String() == "" { sb.WriteString(prev + "\n") } - fmt.Printf("... ") + fmt.Printf("sh> ") reader := bufio.NewReader(os.Stdin)