From 78d3e0e2846ebfa2b81f7daa3d03660c5c1f9f86 Mon Sep 17 00:00:00 2001 From: arpio Date: Mon, 3 Nov 2025 02:05:46 +0100 Subject: [PATCH] Update write.go --- write.go | 1 + 1 file changed, 1 insertion(+) diff --git a/write.go b/write.go index a8a8aa7..f86e0ea 100644 --- a/write.go +++ b/write.go @@ -72,6 +72,7 @@ func singleLine() wrapper { return editor(textedit.SingleLine()) } func indent(first, rest int) wrapper { return editor(textedit.Indent(timesn(" ", first), timesn(" ", rest))) } + func wrap(firstWidth, restWidth int) wrapper { return editor(textedit.Wrap(firstWidth, restWidth)) }