Skip to content

Commit 87d0077

Browse files
authored
output truncation message (#185)
1 parent 1f364b6 commit 87d0077

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

render/view.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ func (m rootModel) View() string {
129129
const maxLines, maxRunes = 32, 5120
130130
for s := range sliced {
131131
if i >= maxLines || runeCount >= maxRunes {
132-
str.WriteString(gray.Render("... output truncated"))
132+
str.WriteString(gray.Render("... output visually truncated, full output captured"))
133133
str.WriteByte('\n')
134134
break
135135
}

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.29.4
1+
v1.29.5

0 commit comments

Comments
 (0)