From 07fe9156ad2cf60d1ada0f145f1f0a23d8e172ab Mon Sep 17 00:00:00 2001 From: Fork Less Date: Wed, 17 Jun 2026 00:21:41 +0200 Subject: [PATCH] fix: align persona list continuation indent with first-line description position --- server/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/command.go b/server/command.go index 3c85a8c..5252d1d 100644 --- a/server/command.go +++ b/server/command.go @@ -150,7 +150,7 @@ func (p *Plugin) listPersonas() string { for _, id := range ids { desc := personaLibrary[id] // Indent continuation lines so multi-line descriptions stay readable. - indented := strings.ReplaceAll(desc, "\n", "\n "+strings.Repeat(" ", 14)) + indented := strings.ReplaceAll(desc, "\n", "\n "+strings.Repeat(" ", 13)) b.WriteString(fmt.Sprintf(" %-12s %s\n", id, indented)) } b.WriteString("```\nUse /ai persona to switch.")