Merge pull request #598 from jmorganca/mxyng/help-exit

add painter message for exit
This commit is contained in:
Michael Yang 2023-09-26 15:17:40 -07:00 committed by GitHub
commit c38ec5befb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)))
}