We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d21572 commit f2b8266Copy full SHA for f2b8266
lib/msgfmt/message_box.go
@@ -68,7 +68,8 @@ func removeOpencodeMessageBox(msg string) string {
68
// ┃ ┃
69
// ┃ > ┃
70
71
- // We only check for the first ┃ and then an empty line above it as sometimes the full block load within a snapshot this leads to ..
+ // We only check for the first ┃ and then an empty line above it - as sometimes the full input block does not load within a snapshot,
72
+ // this leads to displaying a bunch of newlines.
73
for i := len(lines) - 1; i >= 1; i-- {
74
if strings.TrimSpace(lines[i-1]) == "" &&
75
strings.ReplaceAll(lines[i], " ", "") == "┃┃" {
0 commit comments