From 93d887e4bce899ba31b60e9a80b825d388df9603 Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Mon, 25 Sep 2023 16:30:14 -0700 Subject: [PATCH] add painter message for exit --- cmd/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cmd.go b/cmd/cmd.go index 9ab260c8..443dc6f5 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -43,7 +43,7 @@ func (p Painter) Paint(line []rune, _ int) []rune { if p.IsMultiLine { prompt = "Use \"\"\" to end multi-line input" } else { - prompt = "Send a message (/? for help)" + prompt = "Send a message (/? for help, /bye to exit)" } return []rune(fmt.Sprintf("\033[38;5;245m%s\033[%dD\033[0m", prompt, len(prompt))) }